1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-08 13:28:05 +00:00

Include FreeBSD's syscall.h if not using NetBSD syscalls.

This commit is contained in:
John Birrell 1998-08-08 02:24:03 +00:00
parent dc43d96540
commit 2a957ed7cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38181

View File

@ -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); \