+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.
-/* 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