diff options
author | Roland McGrath <roland@gnu.org> | 1995-07-25 20:44:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-07-25 20:44:48 +0000 |
commit | ff48a63c86133fb352392c60b525d6aaf2d836a2 (patch) | |
tree | 4ebfcac559dd9e9ef48ea58894756542b75fed46 /posix | |
parent | 4356cfd7ad089329066cc2ebaaf9e1e982762537 (diff) | |
download | glibc-ff48a63c86133fb352392c60b525d6aaf2d836a2.tar.gz |
* sysdeps/mach/hurd/pathconf.c: Declare VALUE as int, not long int.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/regex.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/posix/regex.c b/posix/regex.c index 6f89d96a3f..5faba4b4ed 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -264,7 +264,8 @@ char *alloca (); /* Define how to allocate the failure stack. */ -#ifdef REL_ALLOC +#if defined (REL_ALLOC) && defined (REGEX_MALLOC) + #define REGEX_ALLOCATE_STACK(size) \ r_alloc (&failure_stack_ptr, (size)) #define REGEX_REALLOCATE_STACK(source, osize, nsize) \ @@ -272,7 +273,7 @@ char *alloca (); #define REGEX_FREE_STACK(ptr) \ r_alloc_free (&failure_stack_ptr) -#else /* not REL_ALLOC */ +#else /* not using relocating allocator */ #ifdef REGEX_MALLOC @@ -290,7 +291,7 @@ char *alloca (); #define REGEX_FREE_STACK(arg) #endif /* not REGEX_MALLOC */ -#endif /* not REL_ALLOC */ +#endif /* not using relocating allocator */ /* True if `size1' is non-NULL and PTR is pointing anywhere inside |