blob: 367dc0194eaf6f040873152ad01aaf4fcd7730bf [file] [log] [blame]
Denys Vlasenko8ed57272009-02-25 14:24:02 +00001#include <stdlib.h>
2#include <unistd.h>
3
4int main(int argc, char *argv[])
Wichert Akkermanfaf72222000-02-19 23:59:03 +00005{
Denys Vlasenko8ed57272009-02-25 14:24:02 +00006 if (vfork() == 0) {
Wichert Akkermanfaf72222000-02-19 23:59:03 +00007 write(1, "child\n", 6);
Denys Vlasenko8ed57272009-02-25 14:24:02 +00008 } else {
Wichert Akkermanfaf72222000-02-19 23:59:03 +00009 wait(0);
10 write(1, "parent\n", 7);
11 }
Denys Vlasenko8ed57272009-02-25 14:24:02 +000012
Wichert Akkermanfaf72222000-02-19 23:59:03 +000013 exit(0);
14}