aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/stdint.h8
-rw-r--r--sysdeps/gnu/utmpx.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/sysdeps/generic/stdint.h b/sysdeps/generic/stdint.h
index ed34451391..a0d1c64901 100644
--- a/sysdeps/generic/stdint.h
+++ b/sysdeps/generic/stdint.h
@@ -114,15 +114,15 @@ typedef unsigned long long int uint_fast64_t;
/* Types for `void *' pointers. */
#if __WORDSIZE == 64
-# ifndef intptr_t
+# ifndef __intptr_t_defined
typedef long int intptr_t;
-# define intptr_t intptr_t
+# define __intptr_t_defined
# endif
typedef unsigned long int uintptr_t;
#else
-# ifndef intptr_t
+# ifndef __intptr_t_defined
typedef int intptr_t;
-# define intptr_t intptr_t
+# define __intptr_t_defined
# endif
typedef unsigned int uintptr_t;
#endif
diff --git a/sysdeps/gnu/utmpx.h b/sysdeps/gnu/utmpx.h
index 916a2c5936..a7b58daf7f 100644
--- a/sysdeps/gnu/utmpx.h
+++ b/sysdeps/gnu/utmpx.h
@@ -23,9 +23,9 @@
#include <sys/time.h>
/* Required according to Unix98. */
-#ifndef pid_t
+#ifndef __pid_t_defined
typedef __pid_t pid_t;
-# define pid_t pid_t
+# define __pid_t_defined
#endif
/* Get system dependent values and data structures. */