File: libvfork.c

package info (click to toggle)
devscripts 2.10.69%2Bsqueeze4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,868 kB
  • ctags: 479
  • sloc: perl: 14,849; sh: 4,875; makefile: 166; ansic: 17
file content (8 lines) | stat: -rw-r--r-- 99 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
#include <sys/types.h>
#include <unistd.h> 

#undef vfork

pid_t vfork(void){
    return fork();
}