gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / libiberty / vfork.c
index 86c45919f660f5a6ba106f3035a5908819eac38b..eb4ff622b44f5ba6100b64f8ccf1d5880b670c52 100644 (file)
@@ -1,8 +1,22 @@
 /* Emulate vfork using just plain fork, for systems without a real vfork.
    This function is in the public domain. */
 
+/*
+
+@deftypefn Supplemental int vfork (void)
+
+Emulates @code{vfork} by calling @code{fork} and returning its value.
+
+@end deftypefn
+
+*/
+
+#include "ansidecl.h"
+
+extern int fork (void);
+
 int
-vfork ()
+vfork (void)
 {
   return (fork ());
 }
This page took 0.025646 seconds and 4 git commands to generate.