Add a missing header for regress_thread.c

This commit is contained in:
Nick Mathewson 2010-09-08 14:52:24 -04:00
parent 911e0db8f0
commit de412948a1

View File

@ -33,9 +33,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef WIN32
#ifdef _EVENT_HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef _EVENT_HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#ifdef _EVENT_HAVE_PTHREADS
#include <pthread.h>