Skip to content

Commit

Permalink
Merge pull request #87 from bcachet/feature/ADD_MSVCSupport
Browse files Browse the repository at this point in the history
ADD: MSVC support by protecting stdlib.h include in ptest.c
  • Loading branch information
orangeduck committed Jul 3, 2015
2 parents 5d9ac93 + b88b664 commit f390717
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/ptest.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
#include <stdlib.h>
#include <signal.h>
#include <time.h>
#include <unistd.h>
#if defined(CELLO_UNIX)
# include <unistd.h>
#endif

/* Globals */

Expand Down

0 comments on commit f390717

Please sign in to comment.