/* TAGS: fork min c */ #include #include int main() { pid_t pid = fork(); if ( pid != 0 ) assert( pid == 2 ); }