summaryrefslogtreecommitdiff
path: root/zombie.c
diff options
context:
space:
mode:
authorrsc <rsc>2007-08-27 23:26:33 +0000
committerrsc <rsc>2007-08-27 23:26:33 +0000
commit558ab49f13634d972e956020a12d14fdb1416b94 (patch)
tree02a4424e94f3401b8071dbfb2fe50212da17c35c /zombie.c
parent99b11b6c64c17b94288c659e9398261e69a0cf75 (diff)
downloadxv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.tar.gz
xv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.tar.bz2
xv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.zip
delete unnecessary #include lines
Diffstat (limited to 'zombie.c')
-rw-r--r--zombie.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/zombie.c b/zombie.c
index 07ad798..077c02c 100644
--- a/zombie.c
+++ b/zombie.c
@@ -8,8 +8,6 @@
int
main(void)
{
- int i;
-
if(fork() > 0)
sleep(5); // Let child exit before parent.
exit();