URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Go to most recent revision |
Only display areas with differences |
Details |
Blame |
View Log
Rev 578 |
Rev 1765 |
/* Emulate vfork using just plain fork, for systems without a real vfork.
|
/* Emulate vfork using just plain fork, for systems without a real vfork.
|
This function is in the public domain. */
|
This function is in the public domain. */
|
|
|
#include "ansidecl.h"
|
#include "ansidecl.h"
|
|
|
extern int fork PARAMS ((void));
|
extern int fork PARAMS ((void));
|
|
|
int
|
int
|
vfork ()
|
vfork ()
|
{
|
{
|
return (fork ());
|
return (fork ());
|
}
|
}
|
|
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.