2000-06-04 Philippe De Muyter <phdm@macqel.be>

* explodename.c: Include stdlib.h and string.h only if they exist.
	Use strings.h eventually. (already in gettext-0.10.35 since 1998-04-27)
This commit is contained in:
Phil Blundell 2000-06-04 21:04:03 +00:00
parent 80c9154aa2
commit 11434cef73
2 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-06-04 Philippe De Muyter <phdm@macqel.be>
* explodename.c: Include stdlib.h and string.h only if they exist.
Use strings.h eventually. (already in gettext-0.10.35 since 1998-04-27)
1997-09-06 02:10 Ulrich Drepper <drepper@cygnus.com> 1997-09-06 02:10 Ulrich Drepper <drepper@cygnus.com>
* intlh.inst.in: Reformat copyright. * intlh.inst.in: Reformat copyright.

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. /* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
@ -19,8 +19,15 @@
# include <config.h> # include <config.h>
#endif #endif
#include <stdlib.h> #if defined STDC_HEADERS || defined _LIBC
#include <string.h> # include <stdlib.h>
#endif
#if defined HAVE_STRING_H || defined _LIBC
# include <string.h>
#else
# include <strings.h>
#endif
#include <sys/types.h> #include <sys/types.h>
#include "loadinfo.h" #include "loadinfo.h"