Skip to content
Snippets Groups Projects
Commit d734dfd6 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-01-07 15:42:33 by simonm]

#include <unistd.h> to get prototype for vfork.
parent 19a86f31
No related merge requests found
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: system.c,v 1.3 1998/12/02 13:27:59 simonm Exp $
* $Id: system.c,v 1.4 1999/01/07 15:42:33 simonm Exp $
*
* system Runtime Support
*/
......@@ -9,6 +9,10 @@
#include "Rts.h"
#include "stgio.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment