1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-04 18:48:06 +00:00

fix libevent #include quirk reported by SoftwareElves

This commit is contained in:
Charles Kerr 2007-11-07 03:13:04 +00:00
parent 24dd9a2b7e
commit b43bb1483d
2 changed files with 4 additions and 0 deletions

View file

@ -28,6 +28,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <sys/queue.h> /* libevent needs this */
#include <sys/types.h> /* libevent needs this */
#include <event.h>
#include "transmission.h"

View file

@ -35,6 +35,8 @@
#include <sys/stat.h>
#include <unistd.h> /* usleep, stat */
#include <sys/queue.h> /* libevent needs this */
#include <sys/types.h> /* libevent needs this */
#include "event.h"
#ifdef WIN32