diff options
author | jb <jb@FreeBSD.org> | 1998-08-08 02:24:03 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-08 02:24:03 +0000 |
commit | 28e246e3580d752c0439d26307a88a5429644361 (patch) | |
tree | 46d529f9154dcda4331a2a953c0c20839974fcd0 /lib/libc | |
parent | 931e9bbff0fa9ba5f4da2ead1c96b3193b796c4e (diff) | |
download | FreeBSD-src-28e246e3580d752c0439d26307a88a5429644361.zip FreeBSD-src-28e246e3580d752c0439d26307a88a5429644361.tar.gz |
Include FreeBSD's syscall.h if not using NetBSD syscalls.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/alpha/SYS.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libc/alpha/SYS.h b/lib/libc/alpha/SYS.h index 40f9808..cfc0909 100644 --- a/lib/libc/alpha/SYS.h +++ b/lib/libc/alpha/SYS.h @@ -1,4 +1,4 @@ -/* $Id: SYS.h,v 1.1.1.1 1998/03/09 06:34:40 jb Exp $ */ +/* $Id: SYS.h,v 1.2 1998/06/09 22:43:34 jb Exp $ */ /* From: NetBSD: SYS.h,v 1.5 1997/05/02 18:15:15 kleink Exp */ /* @@ -29,8 +29,11 @@ */ #include <machine/asm.h> +#ifdef __NETBSD_SYSCALLS #include <sys/netbsd_syscall.h> - +#else +#include <sys/syscall.h> +#endif #define CALLSYS_ERROR(name) \ CALLSYS_NOERROR(name); \ |