diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-10-27 16:52:22 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-10-27 17:20:14 +0200 |
commit | 3871f58f065dac3917eb18220a479e9591769c8c (patch) | |
tree | 44e025a15a6972cdf70070b6fcd04bf9330b8884 /posix/unistd.h | |
parent | 21b64b153631b762fba3489caf04e14c93c8d009 (diff) | |
download | glibc-3871f58f065dac3917eb18220a479e9591769c8c.zip glibc-3871f58f065dac3917eb18220a479e9591769c8c.tar.gz glibc-3871f58f065dac3917eb18220a479e9591769c8c.tar.bz2 |
Don't mark memory synchronisation functions as leaf
Diffstat (limited to 'posix/unistd.h')
-rw-r--r-- | posix/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index 9b41697..01fb64a 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -776,7 +776,7 @@ extern int setresgid (__gid_t __rgid, __gid_t __egid, __gid_t __sgid) /* Clone the calling process, creating an exact copy. Return -1 for errors, 0 to the new process, and the process ID of the new process to the old process. */ -extern __pid_t fork (void) __THROW; +extern __pid_t fork (void) __THROWNL; #if (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8) \ || defined __USE_BSD |