emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lib-src/yow.c


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/lib-src/yow.c
Date: Tue, 18 Dec 2001 10:57:02 -0500

Index: emacs/lib-src/yow.c
diff -c emacs/lib-src/yow.c:1.12 emacs/lib-src/yow.c:1.13
*** emacs/lib-src/yow.c:1.12    Fri Feb 26 06:37:05 1999
--- emacs/lib-src/yow.c Tue Dec 18 10:57:02 2001
***************
*** 10,18 ****
   * With dynamic memory allocation.
   */
  
  #include <stdio.h>
  #include <ctype.h>
! #include <../src/epaths.h>      /* For PATH_DATA.  */
  
  #define BUFSIZE  80
  #define SEP      '\0'
--- 10,35 ----
   * With dynamic memory allocation.
   */
  
+ #include "config.h"
  #include <stdio.h>
  #include <ctype.h>
! #ifdef HAVE_STRING_H
! #include <string.h>
! #endif
! #ifdef TIME_WITH_SYS_TIME
! #include <sys/time.h>
! #include <time.h>
! #else
! #ifdef HAVE_SYS_TIME_H
! #include <sys/time.h>
! #else
! #include <time.h>
! #endif
! #endif
! #ifdef HAVE_UNISTD_H
! #include <unistd.h>
! #endif
! #include "epaths.h"           /* For PATH_DATA.  */
  
  #define BUFSIZE  80
  #define SEP      '\0'
***************
*** 33,39 ****
      &res;})
  #endif
  
! char *malloc(), *realloc();
  
  void yow();
  void setup_yow();
--- 50,58 ----
      &res;})
  #endif
  
! #ifndef HAVE_STDLIB_H
! char *malloc __P ((size_t size))), *realloc __P ((POINTER_TYPE *ptr, size_t 
size));
! #endif
  
  void yow();
  void setup_yow();



reply via email to

[Prev in Thread] Current Thread [Next in Thread]