diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-11 18:34:32 +0200 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-11 18:34:32 +0200 |
commit | d89241e795e99e830003b1fbbe1735d48bc81ce8 (patch) | |
tree | ca5d5da10b9893435d1cf510ccd8b4f483a6af4b /extra | |
parent | a7acd97ad1fd7c152f7620c0224fba624f226796 (diff) |
Include sys/types.h instead of a custom typedef
Diffstat (limited to 'extra')
-rw-r--r-- | extra/hiredis/libevent.h | 2 |
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> |