/[pengfork]/pengfork/src/misc.c
ViewVC logotype

Diff of /pengfork/src/misc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12 by chupa, Thu Dec 5 00:12:15 2002 UTC revision 1.13 by chupa, Fri Dec 6 23:05:29 2002 UTC
# Line 20  Line 20 
20   *                   *                
21   */   */
22    
23  #include "config.h"  #if HAVE_CONFIG_H
24    # include "config.h"
25    #endif
26    
27  #include <sys/types.h>  #if STDC_HEADERS
28  #include <sys/stat.h>  # include <stdlib.h>
29  #include <stdlib.h>  # include <stddef.h>
30  #include <stdio.h>  #else
31  #include <fcntl.h>  # if HAVE_STDLIB_H
32  #include <unistd.h>  #  include <stdlib.h>
33  #include <sys/socket.h>  # endif
34  #include <netinet/in.h>  #endif
35  #include <arpa/inet.h>  #if HAVE_SYS_TYPES_H
36  #include <signal.h>  # include <sys/types.h>
37  #include <string.h>  #endif
38  #include <errno.h>  #if HAVE_SYS_STAT_H
39    # include <sys/stat.h>
40    #endif
41    #if HAVE_STDIO_H
42    # include <stdio.h>
43    #endif
44    #if HAVE_FCNTL_H
45    # include <fcntl.h>
46    #endif
47    #if HAVE_UNISTD_H
48    # include <unistd.h>
49    #endif
50    #if HAVE_SYS_SOCKET_H
51    # include <sys/socket.h>
52    #endif
53    #if HAVE_NETINET_IN_H
54    # include <netinet/in.h>
55    #endif
56    #if HAVE_ARPA_INET_H
57    # include <arpa/inet.h>
58    #endif
59    #if HAVE_SIGNAL_H
60    # include <signal.h>
61    #endif
62    #if HAVE_STRING_H
63    # if !STDC_HEADERS && HAVE_MEMORY_H
64    #  include <memory.h>
65    # endif
66    # include <string.h>
67    #endif
68    #if HAVE_ERRNO_H
69    # include <errno.h>
70    #endif
71    
72  #include "gettext.h"  #include "gettext.h"
73  #include "log.h"  #include "log.h"

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26