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

Diff of /pengfork/src/modem/modem.c

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

revision 1.11 by chupa, Thu Dec 5 00:12:16 2002 UTC revision 1.12 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/ioctl.h>  #if HAVE_SYS_IOCTL_H
28  #include <sys/time.h>  # include <sys/ioctl.h>
29  #include <sys/types.h>  #endif
30  #include <sys/stat.h>  #if TIME_WITH_SYS_TIME
31  #include <stdio.h>  # include <sys/time.h>
32  #include <string.h>  # include <time.h>
33  #include <fcntl.h>  #else
34  #include <termios.h>  # if HAVE_SYS_TIME_H
35  #include <unistd.h>  #  include <sys/time.h>
36    # else
37    #  include <time.h>
38    # endif
39    #endif
40    #if HAVE_SYS_IOCTL_H
41    # include <sys/types.h>
42    #endif
43    #if HAVE_SYS_STAT_H
44    # include <sys/stat.h>
45    #endif
46    #if HAVE_STDIO_H
47    # include <stdio.h>
48    #endif
49    #if HAVE_STRING_H
50    # if !STDC_HEADERS && HAVE_MEMORY_H
51    #  include <memory.h>
52    # endif
53    # include <string.h>
54    #endif
55    #if HAVE_FCNTL_H
56    # include <fcntl.h>
57    #endif
58    #if HAVE_TERMIOS_H
59    # include <termios.h>
60    #endif
61    #if HAVE_UNISTD_H
62    # include <unistd.h>
63    #endif
64    
65  #include "gettext.h"  #include "gettext.h"
66  #include "common.h"  #include "common.h"

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

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