[BACK]Return to includes.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/includes.h between version 1.5 and 1.6

version 1.5, 1999/09/30 05:03:04 version 1.6, 1999/09/30 05:19:57
Line 21 
Line 21 
 /* Note: autoconf documentation tells to use the <...> syntax and have -I. */  /* Note: autoconf documentation tells to use the <...> syntax and have -I. */
 #include <config.h>  #include <config.h>
   
 #include "version.h"  #include <sys/types.h>
   #include <sys/socket.h>
 typedef unsigned short word16;  #include <sys/select.h>
   
 #if SIZEOF_LONG == 4  
 typedef unsigned long word32;  
 #else  
 #if SIZEOF_INT == 4  
 typedef unsigned int word32;  
 #else  
 #if SIZEOF_SHORT >= 4  
 typedef unsigned short word32;  
 #else  
 YOU_LOSE  
 #endif  
 #endif  
 #endif  
   
 #include <sys/param.h>  #include <sys/param.h>
 #include <machine/endian.h>  #include <sys/ioctl.h>
 #include <netgroup.h>  #include <sys/endian.h>
   #include <sys/stat.h>
   #include <sys/wait.h>
   #include <sys/time.h>
   #include <sys/un.h>
   #include <sys/resource.h>
   
   #include <netgroup.h>
 #include <stdio.h>  #include <stdio.h>
 #include <ctype.h>  #include <ctype.h>
 #include <sys/stat.h>  
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <assert.h>  #include <assert.h>
 #include <signal.h>  #include <signal.h>
   
 #include <sys/ioctl.h>  
   
 #include <termios.h>  #include <termios.h>
   
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <stdarg.h>  #include <stdarg.h>
   
 #include <sys/socket.h>  
 #include <netinet/in.h>  #include <netinet/in.h>
 #include <netinet/in_systm.h>  #include <netinet/in_systm.h>
 #include <sys/un.h>  
 #include <netinet/tcp.h>  #include <netinet/tcp.h>
 #include <arpa/inet.h>  #include <arpa/inet.h>
 #include <netdb.h>  #include <netdb.h>
 #include <sys/select.h>  
   
 #include <pwd.h>  #include <pwd.h>
 #include <grp.h>  #include <grp.h>
   
 #include <sys/wait.h>  
   
 #ifdef HAVE_UNISTD_H  
 #include <unistd.h>  #include <unistd.h>
 #endif /* HAVE_UNISTD_H */  
   
 #include <sys/time.h>  
 #include <time.h>  #include <time.h>
   
 #include <paths.h>  #include <paths.h>
   
 #if HAVE_DIRENT_H  
 #include <dirent.h>  #include <dirent.h>
 #define NAMLEN(dirent) strlen((dirent)->d_name)  
 #else  
 #define dirent direct  
 #define NAMLEN(dirent) (dirent)->d_namlen  
 #if HAVE_SYS_NDIR_H  
 #include <sys/ndir.h>  
 #endif  
 #if HAVE_SYS_DIR_H  
 #include <sys/dir.h>  
 #endif  
 #if HAVE_NDIR_H  
 #include <ndir.h>  
 #endif  
 #endif  
   
 #include <sys/resource.h>  
   
 #if USE_STRLEN_FOR_AF_UNIX  
 #define AF_UNIX_SIZE(unaddr) \  
   (sizeof((unaddr).sun_family) + strlen((unaddr).sun_path) + 1)  
 #else  
 #define AF_UNIX_SIZE(unaddr) sizeof(unaddr)  #define AF_UNIX_SIZE(unaddr) sizeof(unaddr)
 #endif  
   #include "version.h"
   
 #endif /* INCLUDES_H */  #endif /* INCLUDES_H */

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6