diff options
author | 1996-08-31 09:15:12 +0000 | |
---|---|---|
committer | 1996-08-31 09:15:12 +0000 | |
commit | 46c50f25f2f1324463df28e51ececfab70467c25 (patch) | |
tree | e17d6cd51a6750e27732a0915b2a4692ac67c0bc /sys | |
parent | Fix thinko in last change (diff) | |
download | wireguard-openbsd-46c50f25f2f1324463df28e51ececfab70467c25.tar.xz wireguard-openbsd-46c50f25f2f1324463df28e51ececfab70467c25.zip |
Small addition
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/proc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index cd9c3d1ce2a..ae57b50cbc6 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.9 1996/08/25 09:51:47 deraadt Exp $ */ +/* $OpenBSD: proc.h,v 1.10 1996/08/31 09:15:12 pefo Exp $ */ /* $NetBSD: proc.h,v 1.44 1996/04/22 01:23:21 christos Exp $ */ /*- @@ -92,6 +92,7 @@ struct emul { /* Set registers before execution */ void (*e_setregs) __P((struct proc *, struct exec_package *, u_long, register_t *)); + int (*e_fixup) __P((struct proc *, struct exec_package *)); char *e_sigcode; /* Start of sigcode */ char *e_esigcode; /* End of sigcode */ }; |