File: libvfork.c

package info (click to toggle)
devscripts 2.7.0
  • links: PTS
  • area: main
  • in suites: woody
  • size: 508 kB
  • ctags: 140
  • sloc: perl: 3,057; sh: 1,231; makefile: 106; ansic: 6
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();
}