diff options
Diffstat (limited to 'posix/vfork.c')
-rw-r--r-- | posix/vfork.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/vfork.c b/posix/vfork.c index d4e76ad21e..07cfca1885 100644 --- a/posix/vfork.c +++ b/posix/vfork.c @@ -21,10 +21,10 @@ /* If we don't have vfork, fork is close enough. */ __pid_t -__vfork (void) +__libc_vfork (void) { return __fork (); } +strong_alias (__libc_vfork, __vfork) libc_hidden_def (__vfork) - -weak_alias (__vfork, vfork) +weak_alias (__libc_vfork, vfork) |