summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2010-10-11 18:34:32 +0200
committerPieter Noordhuis <pcnoordhuis@gmail.com>2010-10-11 18:34:32 +0200
commitd89241e795e99e830003b1fbbe1735d48bc81ce8 (patch)
treeca5d5da10b9893435d1cf510ccd8b4f483a6af4b /extra
parenta7acd97ad1fd7c152f7620c0224fba624f226796 (diff)
Include sys/types.h instead of a custom typedef
Diffstat (limited to 'extra')
-rw-r--r--extra/hiredis/libevent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/hiredis/libevent.h b/extra/hiredis/libevent.h
index 4473d59..63d6663 100644
--- a/extra/hiredis/libevent.h
+++ b/extra/hiredis/libevent.h
@@ -1,4 +1,4 @@
-typedef unsigned char u_char; /* libevents needs u_char */
+#include <sys/types.h>
#include <event.h>
#include <hiredis.h>