diff options
author | jb <jb@FreeBSD.org> | 1998-08-08 02:18:07 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-08 02:18:07 +0000 |
commit | 559e45b44f18f13b2655d77c476394d8c7345f92 (patch) | |
tree | a917e99a419902a6aa0b3195fc3cc22ec859c3b7 /lib/libc | |
parent | f5eb9db9bd74cf5680327f19dd047420d2a28de5 (diff) | |
download | FreeBSD-src-559e45b44f18f13b2655d77c476394d8c7345f92.zip FreeBSD-src-559e45b44f18f13b2655d77c476394d8c7345f92.tar.gz |
Make NetBSD compatibility conditional on NETBSD_SYSCALLS being defined.
This is no longer the default.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/alpha/gen/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/alpha/gen/Makefile.inc b/lib/libc/alpha/gen/Makefile.inc index 091e82a..98e0c2a 100644 --- a/lib/libc/alpha/gen/Makefile.inc +++ b/lib/libc/alpha/gen/Makefile.inc @@ -1,8 +1,10 @@ -# $Id: Makefile.inc,v 1.1.1.1 1998/03/09 06:34:42 jb Exp $ +# $Id: Makefile.inc,v 1.2 1998/05/15 12:01:05 jb Exp $ SRCS+= _setjmp.S fabs.S frexp.c infinity.c isinf.c ldexp.c modf.c setjmp.S SRCS+= flt_rounds.c +.if defined(NETBSD_SYSCALLS) SRCS+= netbsd_getdtablesize.c +.endif #SRCS+= flt_rounds.c fpgetmask.c fpgetround.c fpgetsticky.c fpsetmask.c \ # fpsetround.c fpsetsticky.c |