Index: bin/iffe ####### sfio-oct95+/ => sfio-oct95+ *** sfio-oct95+/bin/iffe Fri Feb 28 11:44:21 1997 --- sfio-oct95+/bin/iffe Fri Feb 28 11:33:30 1997 *************** *** 1134,1140 **** echo "#define $m 1 /* $v is a reserved keyword */" } ;; ! lib|mth)case $p in ?*) continue ;; esac echo "$std --- 1134,1140 ---- echo "#define $m 1 /* $v is a reserved keyword */" } ;; ! lib|mth|socket|stream)case $p in ?*) continue ;; esac echo "$std Index: src/lib/sfio/features/sfio ####### sfio-oct95+/ => sfio-oct95+ *** sfio-oct95+/src/lib/sfio/features/sfio Fri Feb 28 11:44:22 1997 --- sfio-oct95+/src/lib/sfio/features/sfio Fri Feb 28 18:37:24 1997 *************** *** 6,12 **** # Converted to sfio v10/01/94 by Giampiero Sierra (06/08/95). ################################################################## ! lib atexit,onexit,on_exit exit cleanup note{ stuck with standard _cleanup }end execute{ #include --- 6,14 ---- # Converted to sfio v10/01/94 by Giampiero Sierra (06/08/95). ################################################################## ! lib atexit ! lib onexit ! lib on_exit exit cleanup note{ stuck with standard _cleanup }end execute{ #include *************** *** 19,25 **** main() { printf("cleanup\n"); exit(1); } }end ! lib bcopy,bzero,memccpy,memchr sys types hdr time --- 21,30 ---- main() { printf("cleanup\n"); exit(1); } }end ! lib bcopy ! lib bzero ! lib memccpy ! lib memchr sys types hdr time *************** *** 145,152 **** ################################################## hdr filio ! sys filio,ioctl ! lib mktemp,remove,unlink lib waitpid lib getpagesize --- 150,160 ---- ################################################## hdr filio ! sys filio ! sys ioctl ! lib mktemp ! lib remove ! lib unlink lib waitpid lib getpagesize *************** *** 243,249 **** ## Revision note: This has gone from 'compile' to 'link' ################################################ ! lib select note{ select() has standard 5 arg interface }end link{ #include #include #include --- 251,258 ---- ## Revision note: This has gone from 'compile' to 'link' ################################################ ! lib select ! note{ select() has standard 5 arg interface }end link{ #include #include #include *************** *** 263,269 **** ## See if we can peek ahead in unseekable devices ################################################################ ! stream peek note{ ioctl(I_PEEK) works }end link{ #include #include main() --- 272,279 ---- ## See if we can peek ahead in unseekable devices ################################################################ ! stream peek ! note{ ioctl(I_PEEK) works }end link{ #include #include main() Index: src/lib/sfio/sfhdr.h ####### sfio-oct95+/ => sfio-oct95+ *** sfio-oct95+/src/lib/sfio/sfhdr.h Fri Feb 28 11:44:22 1997 --- sfio-oct95+/src/lib/sfio/sfhdr.h Fri Feb 28 11:37:54 1997 *************** *** 629,636 **** --- 629,638 ---- #if __hpux extern int select _ARG_((size_t, int*, int*, int*, const struct timeval*)); #else + #ifndef __linux__ extern int select _ARG_((int, fd_set*, fd_set*, fd_set*, const struct timeval*)); #endif + #endif #endif /*_lib_select*/ #if _lib_poll *************** *** 647,653 **** --- 649,657 ---- #if _socket_peek #if !__cplusplus + #ifndef __linux__ extern int recv _ARG_((int, Void_t*, int, int)); + #endif #endif #endif /*_socket_peek*/