diff options
author | obrien <obrien@FreeBSD.org> | 2000-11-01 19:48:35 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-11-01 19:48:35 +0000 |
commit | c4a9f49ba81d429e0feff56ed0c369ee75bab7b1 (patch) | |
tree | d039f70072813e8e96b52f7181c2fac067d06538 /sys/compat/linux/linux_ipc.h | |
parent | 3b7fec2c029d84c4e95227989dcc1ab64814798e (diff) | |
download | FreeBSD-src-c4a9f49ba81d429e0feff56ed0c369ee75bab7b1.zip FreeBSD-src-c4a9f49ba81d429e0feff56ed0c369ee75bab7b1.tar.gz |
The MI/MD split wasn't perfect and the MI files need hacks for the
AlphaLinux compat bits. This will be better cleaned up soon.
Agreed to what ever was necessary by: marcel
Diffstat (limited to 'sys/compat/linux/linux_ipc.h')
-rw-r--r-- | sys/compat/linux/linux_ipc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_ipc.h b/sys/compat/linux/linux_ipc.h index e51a35e..b5c1255 100644 --- a/sys/compat/linux/linux_ipc.h +++ b/sys/compat/linux/linux_ipc.h @@ -31,6 +31,7 @@ #ifndef _LINUX_IPC_H_ #define _LINUX_IPC_H_ +#ifndef __alpha__ int linux_msgctl __P((struct proc *, struct linux_ipc_args *)); int linux_msgget __P((struct proc *, struct linux_ipc_args *)); int linux_msgrcv __P((struct proc *, struct linux_ipc_args *)); @@ -44,5 +45,6 @@ int linux_shmat __P((struct proc *, struct linux_ipc_args *)); int linux_shmctl __P((struct proc *, struct linux_ipc_args *)); int linux_shmdt __P((struct proc *, struct linux_ipc_args *)); int linux_shmget __P((struct proc *, struct linux_ipc_args *)); +#endif /*!__alpha__*/ #endif /* _LINUX_IPC_H_ */ |