From: Jim Meyering Date: Fri, 6 Jun 2003 22:30:28 +0000 (+0000) Subject: Include as an alternative to . X-Git-Tag: v5.0.1~330 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f92b22d98c2f2e68477bea5d9f21ccbfa52c814;p=thirdparty%2Fcoreutils.git Include as an alternative to . --- diff --git a/lib/strtoimax.c b/lib/strtoimax.c index 0f03ca174b..23c8eb66c7 100644 --- a/lib/strtoimax.c +++ b/lib/strtoimax.c @@ -1,5 +1,5 @@ /* Convert string representation of a number into an intmax_t value. - Copyright 1999, 2001 Free Software Foundation, Inc. + Copyright 1999, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,6 +23,8 @@ #if HAVE_INTTYPES_H # include +#elif HAVE_STDINT_H +# include #endif #if HAVE_STDLIB_H diff --git a/lib/xstrtol.h b/lib/xstrtol.h index 513855f14e..5d6dd8ebe6 100644 --- a/lib/xstrtol.h +++ b/lib/xstrtol.h @@ -20,6 +20,8 @@ # if HAVE_INTTYPES_H # include /* for uintmax_t */ +# elif HAVE_STDINT_H +# include # endif # ifndef PARAMS