diff options
author | Ben Elliston <bje@au.ibm.com> | 2001-11-29 03:38:59 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2001-11-29 03:38:59 +0000 |
commit | 1491f078cfe48411f5e046fa25bbe7cb1b2d57db (patch) | |
tree | 384bb70ec362537a22be5c2edbb5ab294a8d532e /intl/explodename.c | |
parent | ba73e5c0425a23d60c2553775eaf1b4d921f290e (diff) | |
download | gdb-1491f078cfe48411f5e046fa25bbe7cb1b2d57db.zip gdb-1491f078cfe48411f5e046fa25bbe7cb1b2d57db.tar.gz gdb-1491f078cfe48411f5e046fa25bbe7cb1b2d57db.tar.bz2 |
* Import GNU gettext 0.10.35.
Diffstat (limited to 'intl/explodename.c')
-rw-r--r-- | intl/explodename.c | 13 |
1 files changed, 10 insertions, 3 deletions
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" |