2001-11-15  Jeff Law  <law@redhat.com>

	* posix/regex.c (uintptr_t): Do not provide a definition if the
	system provided one.
This commit is contained in:
Ulrich Drepper 2001-11-15 18:27:28 +00:00
parent 447e5dfd2b
commit f6b20a369e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-11-15 Jeff Law <law@redhat.com>
* posix/regex.c (uintptr_t): Do not provide a definition if the
system provided one.
2001-11-13 Roland McGrath <roland@frob.com>
* stdio-common/tmpfile.c: Moved to ...

View File

@ -297,7 +297,7 @@ init_syntax_once ()
# endif /* emacs */
/* Integer type for pointers. */
# if !defined _LIBC
# if !defined _LIBC && !defined HAVE_UINTPTR_T
typedef unsigned long int uintptr_t;
# endif