[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.7 and 1.8

version 1.7, 1999/09/30 05:53:04 version 1.8, 1999/09/30 08:34:25
Line 13 
Line 13 
   
 */  */
   
 /* RCSID("$Id$"); */  
   
 #ifndef INCLUDES_H  #ifndef INCLUDES_H
 #define INCLUDES_H  #define INCLUDES_H
   
 /* Note: autoconf documentation tells to use the <...> syntax and have -I. */  #define RCSID(msg) \
 #include <config.h>  static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
   
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/socket.h>  #include <sys/socket.h>
Line 33 
Line 31 
 #include <sys/un.h>  #include <sys/un.h>
 #include <sys/resource.h>  #include <sys/resource.h>
   
   #include <netinet/in.h>
   #include <netinet/in_systm.h>
   #include <netinet/tcp.h>
   #include <netinet/ip.h>
   #include <arpa/inet.h>
   #include <netdb.h>
   
 #include <netgroup.h>  #include <netgroup.h>
 #include <stdio.h>  #include <stdio.h>
 #include <ctype.h>  #include <ctype.h>
Line 40 
Line 45 
 #include <fcntl.h>  #include <fcntl.h>
 #include <assert.h>  #include <assert.h>
 #include <signal.h>  #include <signal.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 <netinet/in.h>  
 #include <netinet/in_systm.h>  
 #include <netinet/tcp.h>  
 #include <netinet/ip.h>  
 #include <arpa/inet.h>  
 #include <netdb.h>  
   
 #include <pwd.h>  #include <pwd.h>
 #include <grp.h>  #include <grp.h>
 #include <unistd.h>  #include <unistd.h>
 #include <time.h>  #include <time.h>
 #include <paths.h>  #include <paths.h>
   
 #include <dirent.h>  #include <dirent.h>
   
 #define AF_UNIX_SIZE(unaddr) sizeof(unaddr)  
   
 #include "version.h"  #include "version.h"
   
   /* Define this to be the path of the xauth program. */
   #define XAUTH_PATH "/usr/X11R6/bin/xauth"
   
   /* Define this to use pipes instead of socketpairs for communicating with the
      client program.  Socketpairs do not seem to work on all systems. */
   #define USE_PIPES 1
   
 #endif /* INCLUDES_H */  #endif /* INCLUDES_H */

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8