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/cvtmail.c


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

Index: emacs/lib-src/cvtmail.c
diff -c emacs/lib-src/cvtmail.c:1.8 emacs/lib-src/cvtmail.c:1.9
*** emacs/lib-src/cvtmail.c:1.8 Sat Nov  3 14:04:18 2001
--- emacs/lib-src/cvtmail.c     Tue Dec 18 10:59:09 2001
***************
*** 33,49 ****
   * Author: Larry Kolodney, 1985
   */
  
! 
  #include <stdio.h>
  
  char *malloc ();
  char *realloc ();
  char *getenv ();
  
! char *xmalloc ();
! char *xrealloc ();
! void skip_to_lf ();
! void sysfail ();
  
  int
  main (argc, argv)
--- 33,53 ----
   * Author: Larry Kolodney, 1985
   */
  
! #include "config.h"
  #include <stdio.h>
  
+ #ifndef HAVE_STDLIB_H
  char *malloc ();
  char *realloc ();
  char *getenv ();
+ #else
+ #include <stdlib.h>
+ #endif
  
! char *xmalloc __P ((unsigned));
! char *xrealloc __P ((char *, unsigned));
! void skip_to_lf __P ((FILE *));
! void sysfail __P ((char *));
  
  int
  main (argc, argv)



reply via email to

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