#include int main(int argc, char *argv[]) { (void)argc; (void)argv; int fk = 0; if ((fk = fork()) > 0) { return fk; } return 0; }