Browse Source

hidden moved to prototype

Peter S. Mazinger 19 years ago
parent
commit
34868b2502
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libc/sysdeps/linux/common/vfork.c

+ 2 - 2
libc/sysdeps/linux/common/vfork.c

@@ -12,8 +12,8 @@
 #ifdef __NR_fork
 libc_hidden_proto(fork)
 
-extern __typeof(vfork) __vfork;
-pid_t attribute_hidden __vfork(void)
+extern __typeof(vfork) __vfork attribute_hidden;
+pid_t __vfork(void)
 {
     return fork();
 }