summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-10-22 06:56:31 +0000
committerJim Meyering <jim@meyering.net>2001-10-22 06:56:31 +0000
commitddd7e2a0b8ce1e98fded092435d4236c8c10ee70 (patch)
tree90f5d7bb895e20b679e1c27a84a39065cf2baf22 /lib
parentb7bf622acb8d7e922826917d4372d00b7e91b0b1 (diff)
downloadcoreutils-ddd7e2a0b8ce1e98fded092435d4236c8c10ee70.tar.xz
(uintptr_t): Remove macro and decl; it's config.h's job.
Diffstat (limited to 'lib')
-rw-r--r--lib/regex.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/regex.c b/lib/regex.c
index 560a59447..753c2610d 100644
--- a/lib/regex.c
+++ b/lib/regex.c
@@ -295,12 +295,6 @@ init_syntax_once ()
# endif /* emacs */
-/* Integer type for pointers. */
-# if !defined _LIBC
-#define uintptr_t private_uintptr_t
-typedef unsigned long int uintptr_t;
-# endif
-
/* Should we use malloc or alloca? If REGEX_MALLOC is not defined, we
use `alloca' instead of `malloc'. This is because using malloc in
re_search* or re_match* could cause memory leaks when C-g is used in