diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/daemon.c | 2 | ||||
-rw-r--r-- | misc/regexp.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/misc/daemon.c b/misc/daemon.c index dddb765daf..8cffdde1ce 100644 --- a/misc/daemon.c +++ b/misc/daemon.c @@ -44,7 +44,7 @@ daemon(nochdir, noclose) { int fd; - switch (fork()) { + switch (__fork()) { case -1: return (-1); case 0: diff --git a/misc/regexp.c b/misc/regexp.c index 34019aeb1a..fbc32e74d0 100644 --- a/misc/regexp.c +++ b/misc/regexp.c @@ -1,5 +1,5 @@ /* Define function and variables for the obsolete <regexp.h> interface. - Copyright (C) 1996 Free Software Foundation, Inc. + Copyright (C) 1996, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -41,7 +41,7 @@ __step (const char *string, const char *expbuf) expbuf += __alignof (regex_t *); expbuf -= (expbuf - ((const char *) 0)) % __alignof__ (regex_t *); - if (regexec ((regex_t *) expbuf, string, 1, &match, REG_NOTEOL) + if (__regexec ((regex_t *) expbuf, string, 1, &match, REG_NOTEOL) == REG_NOMATCH) return 0; @@ -63,7 +63,7 @@ __advance (const char *string, const char *expbuf) expbuf += __alignof__ (regex_t *); expbuf -= (expbuf - ((const char *) 0)) % __alignof__ (regex_t *); - if (regexec ((regex_t *) expbuf, string, 1, &match, REG_NOTEOL) + if (__regexec ((regex_t *) expbuf, string, 1, &match, REG_NOTEOL) == REG_NOMATCH /* We have to check whether the check is at the beginning of the buffer. */ |