diff options
author | Phil Blundell <philb@gnu.org> | 2000-06-04 21:04:03 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2000-06-04 21:04:03 +0000 |
commit | 11434cef730797d80bb97a479331b5ba04307a26 (patch) | |
tree | 47400d1c289e6610f2624483370d946c6b413887 | |
parent | 80c9154aa266c6a7dc9879238374aec9240b6296 (diff) | |
download | gdb-11434cef730797d80bb97a479331b5ba04307a26.zip gdb-11434cef730797d80bb97a479331b5ba04307a26.tar.gz gdb-11434cef730797d80bb97a479331b5ba04307a26.tar.bz2 |
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)
-rw-r--r-- | intl/ChangeLog | 5 | ||||
-rw-r--r-- | intl/explodename.c | 13 |
2 files changed, 15 insertions, 3 deletions
diff --git a/intl/ChangeLog b/intl/ChangeLog index ecff6f6..d9d86dd 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -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> * intlh.inst.in: Reformat copyright. diff --git a/intl/explodename.c b/intl/explodename.c index 37c46e9..8066dc2 100644 --- a/intl/explodename.c +++ b/intl/explodename.c @@ -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. This program is free software; you can redistribute it and/or modify @@ -19,8 +19,15 @@ # include <config.h> #endif -#include <stdlib.h> -#include <string.h> +#if defined STDC_HEADERS || defined _LIBC +# include <stdlib.h> +#endif + +#if defined HAVE_STRING_H || defined _LIBC +# include <string.h> +#else +# include <strings.h> +#endif #include <sys/types.h> #include "loadinfo.h" |