/[emacs]/emacs/lib-src/yow.c
ViewVC logotype

Diff of /emacs/lib-src/yow.c

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

revision 1.12 by rms, Fri Feb 26 11:37:05 1999 UTC revision 1.13 by fx, Tue Dec 18 15:57:02 2001 UTC
# Line 10  Line 10 
10   * With dynamic memory allocation.   * With dynamic memory allocation.
11   */   */
12    
13    #include "config.h"
14  #include <stdio.h>  #include <stdio.h>
15  #include <ctype.h>  #include <ctype.h>
16  #include <../src/epaths.h>      /* For PATH_DATA.  */  #ifdef HAVE_STRING_H
17    #include <string.h>
18    #endif
19    #ifdef TIME_WITH_SYS_TIME
20    #include <sys/time.h>
21    #include <time.h>
22    #else
23    #ifdef HAVE_SYS_TIME_H
24    #include <sys/time.h>
25    #else
26    #include <time.h>
27    #endif
28    #endif
29    #ifdef HAVE_UNISTD_H
30    #include <unistd.h>
31    #endif
32    #include "epaths.h"             /* For PATH_DATA.  */
33    
34  #define BUFSIZE  80  #define BUFSIZE  80
35  #define SEP      '\0'  #define SEP      '\0'
# Line 33  Line 50 
50      &res;})      &res;})
51  #endif  #endif
52    
53  char *malloc(), *realloc();  #ifndef HAVE_STDLIB_H
54    char *malloc __P ((size_t size))), *realloc __P ((POINTER_TYPE *ptr, size_t size));
55    #endif
56    
57  void yow();  void yow();
58  void setup_yow();  void setup_yow();

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