Skip to content

Commit

Permalink
fix core/main.c wait.h on nonlinux
Browse files Browse the repository at this point in the history
  • Loading branch information
robertek committed Mar 10, 2014
1 parent 3f7f615 commit 342296e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/core/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 58,11 @@

#include <stdlib.h>
#include <sys/types.h>
#ifdef __linux__
#include <wait.h>
#else
#include <sys/wait.h>
#endif
#include <stdio.h>
#include <string.h>
#include <signal.h>
Expand Down

0 comments on commit 342296e

Please sign in to comment.