diff options
author | Michael Grunder <michael.grunder@gmail.com> | 2020-07-10 12:53:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 12:53:52 -0700 |
commit | 1864e76ea7323fd8789d9c8b5b3c8ca27d4840a6 (patch) | |
tree | 42688dce1a829420001322fb7af30248ff6251e5 /examples/example.c | |
parent | ada366527943b53d749963797080966f99e837f4 (diff) |
Some Windows quality of life improvments. (#846)
* Don't try to ignore SIGPIPE in Windows (it doesn't exist).
* Add an include to our win32.h compatibility header.
* Enable building examples on Travis in Windows.
See #831
Diffstat (limited to 'examples/example.c')
-rw-r--r-- | examples/example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example.c b/examples/example.c index 0e93fc8..15dacbd 100644 --- a/examples/example.c +++ b/examples/example.c @@ -1,8 +1,8 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> - #include <hiredis.h> +#include <win32.h> int main(int argc, char **argv) { unsigned int j, isunix = 0; |