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

Diff of /pengfork/src/buffer.c

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

revision 1.10 by chupa, Thu Dec 5 00:12:15 2002 UTC revision 1.11 by chupa, Fri Dec 6 23:05:29 2002 UTC
# Line 20  Line 20 
20   *                   *                
21   */   */
22    
23  #include <sys/types.h>  #if HAVE_CONFIG_H
24  #include <unistd.h>  # include "config.h"
25  #include <stdlib.h>  #endif
26  #include <stdio.h>  
27  #include <string.h>  #if STDC_HEADERS
28  #include <errno.h>  # include <stdlib.h>
29    # include <stddef.h>
30    #else
31    # if HAVE_STDLIB_H
32    #  include <stdlib.h>
33    # endif
34    #endif
35    #if HAVE_STDIO_H
36    # include <stdio.h>
37    #endif
38    #if HAVE_SYS_TYPES_H
39    # include <sys/types.h>
40    #endif
41    #if HAVE_UNISTD_H
42    # include <unistd.h>
43    #endif
44    #if HAVE_STRING_H
45    # if !STDC_HEADERS && HAVE_MEMORY_H
46    #  include <memory.h>
47    # endif
48    # include <string.h>
49    #endif
50    #if HAVE_ERRNO_H
51    # include <errno.h>
52    #endif
53    
54  #include "log.h"  #include "log.h"
55  #include "buffer.h"  #include "buffer.h"

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

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