diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-01-16 13:43:30 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-01-16 13:43:30 +0000 |
commit | 338237994ac93ca58f6024ef0f7932ab770735d1 (patch) | |
tree | 4417f2f77bc3224e09979303a45e2cd76c5d14be /libpthread/linuxthreads/ptfork.c | |
parent | 76374f68fbc07420cd459b0d0fae424895ea4141 (diff) |
s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/g
Diffstat (limited to 'libpthread/linuxthreads/ptfork.c')
-rw-r--r-- | libpthread/linuxthreads/ptfork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/ptfork.c b/libpthread/linuxthreads/ptfork.c index 5ed380555..364db7e69 100644 --- a/libpthread/linuxthreads/ptfork.c +++ b/libpthread/linuxthreads/ptfork.c @@ -74,7 +74,7 @@ static inline void pthread_call_handlers(struct handler_list * list) { for (/*nothing*/; list != NULL; list = list->next) (list->handler)(); } -#ifdef __UCLIBC_HAS_MMU__ +#ifdef __ARCH_HAS_MMU__ extern int __libc_fork(void); pid_t __fork(void) |