diff options
author | peter <peter@FreeBSD.org> | 1997-09-14 03:32:44 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-09-14 03:32:44 +0000 |
commit | ab48d764a47499acb166a1cc66807da4a15b0a23 (patch) | |
tree | ec1c4ec3102e6c6929a5e8320ab6457c814aa4e2 | |
parent | 303c05fd7944c2a05a18cb01bb690bb5b3629db8 (diff) | |
download | FreeBSD-src-ab48d764a47499acb166a1cc66807da4a15b0a23.zip FreeBSD-src-ab48d764a47499acb166a1cc66807da4a15b0a23.tar.gz |
SYSV has both <poll.h> and <sys/poll.h>. (poll.h merely #includes
sys/poll.h). Just provide a link, it's close enough. :-) In an ideal
world the prototype for poll() would be in <poll.h> but some code seems
to expect it in <sys/poll.h>, so we can't win there.
-rw-r--r-- | include/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Makefile b/include/Makefile index ead42d3..d7fe67d 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.2 (Berkeley) 1/4/94 -# $Id: Makefile,v 1.62 1997/08/21 09:29:46 jmg Exp $ +# $Id: Makefile,v 1.63 1997/08/21 18:40:04 bde Exp $ # # Doing a make install builds /usr/include # @@ -31,7 +31,7 @@ RPCFILES= auth.h auth_unix.h clnt.h pmap_clnt.h pmap_prot.h pmap_rmt.h \ auth_des.h des.h des_crypt.h key_prot.h MFILES= float.h floatingpoint.h stdarg.h varargs.h -LFILES= errno.h fcntl.h syslog.h termios.h +LFILES= errno.h fcntl.h poll.h syslog.h termios.h LDIRS= msdosfs net netns netatalk netinet netipx netkey nfs pccard sys vm \ # netccitt netiso |