diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-22 12:07:35 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-22 12:07:35 +0000 |
commit | d66c1e742c9f51733cf5f54c89f2b8c4b96ed78f (patch) | |
tree | e87fa48b4c9948a3167312b4f8de79e55923a44a | |
parent | 511b3d71f57a59e6f28c6baf2f5ee72d246ff3c0 (diff) |
compat aout loaders change
-rw-r--r-- | sys/sys/exec_aout.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/sys/exec_aout.h b/sys/sys/exec_aout.h index 698bc44f73e..ac9d7b66a60 100644 --- a/sys/sys/exec_aout.h +++ b/sys/sys/exec_aout.h @@ -1,5 +1,5 @@ -/* $OpenBSD: exec_aout.h,v 1.3 1996/05/06 11:31:26 deraadt Exp $ */ -/* $NetBSD: exec_aout.h,v 1.14 1996/05/03 20:04:14 christos Exp $ */ +/* $OpenBSD: exec_aout.h,v 1.4 1996/05/22 12:07:34 deraadt Exp $ */ +/* $NetBSD: exec_aout.h,v 1.15 1996/05/18 17:20:54 christos Exp $ */ /* * Copyright (c) 1993, 1994 Christopher G. Demetriou @@ -181,10 +181,14 @@ int exec_aout_prep_nmagic __P((struct proc *, struct exec_package *)); int exec_aout_prep_omagic __P((struct proc *, struct exec_package *)); int exec_aout_setup_stack __P((struct proc *, struct exec_package *)); +/* For compatibility modules */ +int exec_aout_prep_oldzmagic __P((struct proc *, struct exec_package *)); +int exec_aout_prep_oldnmagic __P((struct proc *, struct exec_package *)); +int exec_aout_prep_oldomagic __P((struct proc *, struct exec_package *)); + /* * MD portion */ int cpu_exec_aout_makecmds __P((struct proc *, struct exec_package *)); -int cpu_exec_aout_prep_oldzmagic __P((struct proc *, struct exec_package *)); #endif /* _KERNEL */ |