Add EM_X86_64.
[deliverable/binutils-gdb.git] / libiberty / vfork.c
CommitLineData
252b5132
RH
1/* Emulate vfork using just plain fork, for systems without a real vfork.
2 This function is in the public domain. */
3
74bcd529
DD
4#include "ansidecl.h"
5
6extern int fork PARAMS ((void));
7
252b5132
RH
8int
9vfork ()
10{
11 return (fork ());
12}
This page took 0.058522 seconds and 4 git commands to generate.