summaryrefslogtreecommitdiff
path: root/select.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2009-01-27 22:30:46 +0000
committerNick Mathewson <nickm@torproject.org>2009-01-27 22:30:46 +0000
commit8889a7703999d3ce5902b5b8e239107579c75ca0 (patch)
treef6828b5c1f17c3fc33f71da9936dccfbcfeb28bc /select.c
parent9993137cbbd9508dbf28e431e0f84d809c516128 (diff)
downloadlibevent-8889a7703999d3ce5902b5b8e239107579c75ca0.tar.gz
Replace all use of config.h with event-config.h.
svn:r1064
Diffstat (limited to 'select.c')
-rw-r--r--select.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/select.c b/select.c
index 76974798..16313248 100644
--- a/select.c
+++ b/select.c
@@ -27,16 +27,16 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
-#include "config.h"
+#include "event-config.h"
#endif
#include <sys/types.h>
-#ifdef HAVE_SYS_TIME_H
+#ifdef _EVENT_HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <sys/_time.h>
#endif
-#ifdef HAVE_SYS_SELECT_H
+#ifdef _EVENT_HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include <sys/queue.h>