Skip to content
Snippets Groups Projects
  • rsc's avatar
    spacing · e695b849
    rsc authored
    e695b849
zombie.c 124 B
// Create a zombie process.

#include "types.h"
#include "stat.h"
#include "user.h"

int
main(void)
{
  fork();
  exit();
}