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:
parent
a1cfbf35a9
commit
6ce375fa38
3 changed files with 12 additions and 0 deletions
|
|
@ -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 ();
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@
|
|||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#ifdef __GNU_LIBRARY__
|
||||
# include <string.h>
|
||||
#endif
|
||||
|
||||
extern char *malloc ();
|
||||
char *xmalloc ();
|
||||
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue