1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 06:31:13 -08:00

[__GNU_LIBRARY__]: Use <string.h>.

This commit is contained in:
Karl Heuer 1996-07-15 21:25:56 +00:00
parent a1cfbf35a9
commit 6ce375fa38
3 changed files with 12 additions and 0 deletions

View file

@ -36,6 +36,10 @@ Boston, MA 02111-1307, USA. */
#include <stdio.h>
#ifdef __GNU_LIBRARY__
# include <string.h>
#endif
char *malloc ();
char *realloc ();
char *getenv ();

View file

@ -8,6 +8,10 @@
#include <stdio.h>
#include <ctype.h>
#ifdef __GNU_LIBRARY__
# include <string.h>
#endif
extern char *malloc ();
char *xmalloc ();

View file

@ -14,6 +14,10 @@
#include <ctype.h>
#include <../src/paths.h> /* For PATH_DATA. */
#ifdef __GNU_LIBRARY__
# include <string.h>
#endif
#define BUFSIZE 80
#define SEP '\0'