]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Unify uintmax_t handling with gnulib.
authorBruno Haible <bruno@clisp.org>
Tue, 14 Jan 2003 13:38:43 +0000 (13:38 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:08:56 +0000 (12:08 +0200)
lib/ChangeLog
lib/mkdtemp.c

index b34d1e333f4fbff75591e5515b4d1fd348610c59..9b27112d5f811b1a5e147e789d3934676e02473b 100644 (file)
@@ -1,3 +1,9 @@
+2003-01-12  Bruno Haible  <bruno@clisp.org>
+
+       * mkdtemp.c: Use the simpler macro names HAVE_STDINT_H,
+       HAVE_INTTYPES_H. (Including <stdint.h> or <inttypes.h> even when not
+       necessary doesn't hurt.)
+
 2002-12-11  Bruno Haible  <bruno@clisp.org>
 
        * setenv.c (alloca): Fall back to malloc.
index 93900a7f760518fa8b3ab2a61982f16309e143ff..8434acf9cba0eeb775e13a58658c849428f470ab 100644 (file)
@@ -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
 # define TMP_MAX 238328
 #endif
 
-#if HAVE_STDINT_H_WITH_UINTMAX || _LIBC
+#if HAVE_STDINT_H || _LIBC
 # include <stdint.h>
 #endif
-
-#if HAVE_INTTYPES_H_WITH_UINTMAX || _LIBC
+#if HAVE_INTTYPES_H
 # include <inttypes.h>
 #endif