OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [libiberty/] [vfork.c] - Blame information for rev 1767

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 578 markom
/* Emulate vfork using just plain fork, for systems without a real vfork.
2
   This function is in the public domain. */
3
 
4
#include "ansidecl.h"
5
 
6
extern int fork PARAMS ((void));
7
 
8
int
9
vfork ()
10
{
11
  return (fork ());
12
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.