From: Bruno Haible Date: Tue, 14 Jan 2003 13:38:43 +0000 (+0000) Subject: Unify uintmax_t handling with gnulib. X-Git-Tag: v0.12~1169 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c99d129b70eb7378c87526f6a453f51cf0bd133;p=thirdparty%2Fgettext.git Unify uintmax_t handling with gnulib. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index b34d1e333..9b27112d5 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,9 @@ +2003-01-12 Bruno Haible + + * mkdtemp.c: Use the simpler macro names HAVE_STDINT_H, + HAVE_INTTYPES_H. (Including or even when not + necessary doesn't hurt.) + 2002-12-11 Bruno Haible * setenv.c (alloca): Fall back to malloc. diff --git a/lib/mkdtemp.c b/lib/mkdtemp.c index 93900a7f7..8434acf9c 100644 --- a/lib/mkdtemp.c +++ b/lib/mkdtemp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2001-2002 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2001-2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -39,11 +39,10 @@ # define TMP_MAX 238328 #endif -#if HAVE_STDINT_H_WITH_UINTMAX || _LIBC +#if HAVE_STDINT_H || _LIBC # include #endif - -#if HAVE_INTTYPES_H_WITH_UINTMAX || _LIBC +#if HAVE_INTTYPES_H # include #endif