1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Remove __STDC__ conditionals from non-installed headers.

This commit is contained in:
Joseph Myers
2012-01-26 23:31:37 +00:00
parent 7071ad79db
commit 965a54a4ee
10 changed files with 27 additions and 63 deletions

View File

@ -1,6 +1,6 @@
/* Declaration of functions and data types used for MD5 sum computing
library functions.
Copyright (C) 1995-1997,1999,2000,2001,2004,2005,2011
Copyright (C) 1995-1997,1999,2000,2001,2004,2005,2011,2012
Free Software Foundation, Inc.
This file is part of the GNU C Library.
@ -43,11 +43,7 @@
typedef uint32_t md5_uint32;
typedef uintptr_t md5_uintptr;
#else
# if defined __STDC__ && __STDC__
# define UINT_MAX_32_BITS 4294967295U
# else
# define UINT_MAX_32_BITS 0xFFFFFFFF
# endif
# define UINT_MAX_32_BITS 4294967295U
/* If UINT_MAX isn't defined, assume it's a 32-bit type.
This should be valid for all systems GNU cares about because