blob: 86c45919f660f5a6ba106f3035a5908819eac38b [file] [log] [blame]
Jason Merrill6599da01997-08-21 18:57:35 -04001/* Emulate vfork using just plain fork, for systems without a real vfork.
2 This function is in the public domain. */
3
4int
5vfork ()
6{
7 return (fork ());
8}