File: libvfork.c

package info (click to toggle)
devscripts 2.14.11~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 4,684 kB
  • sloc: perl: 16,580; sh: 7,295; python: 950; makefile: 224; ansic: 28
file content (8 lines) | stat: -rw-r--r-- 98 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#include <sys/types.h>
#include <unistd.h>

#undef vfork

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