From 251dd4034f3a3f11a190c06d7b69670dc87d219d Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 16 Apr 2002 06:25:00 +0000 Subject: get rid of the STDC_HEADERS check... this failed on IRIX with MIPSpro, use checks for individual headers instead --- src/i18n.cc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/i18n.cc') diff --git a/src/i18n.cc b/src/i18n.cc index 18b77209..5fddea57 100644 --- a/src/i18n.cc +++ b/src/i18n.cc @@ -34,11 +34,17 @@ #include -#ifdef STDC_HEADERS +#ifdef HAVE_STDLIB_H # include +#endif // HAVE_STDLIB_H + +#ifdef HAVE_STRING_H # include +#endif // HAVE_STRING_H + +#ifdef HAVE_STDIO_H # include -#endif // STDC_HEADERS +#endif // HAVE_STDIO_H #ifdef HAVE_LOCALE_H # include -- cgit v1.2.3