diff options
author | James Booth <boothj5@gmail.com> | 2016-05-11 22:50:19 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-05-11 22:50:19 +0100 |
commit | cf8452d95f7a172f0609cd2f647f23a52aeb62d1 (patch) | |
tree | 11dd2f955d0563dc9ed3e241b8c1428a43519818 | |
parent | 598b2b3235b008cb9ec240b0df0193dd8bec4965 (diff) | |
download | profani-tty-cf8452d95f7a172f0609cd2f647f23a52aeb62d1.tar.gz |
Reorder headers in inputwin.c
Fixes unknown type name '_fpos64_t' error on Cygwin
-rw-r--r-- | src/ui/inputwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c index c94c0a8c..2c7eae34 100644 --- a/src/ui/inputwin.c +++ b/src/ui/inputwin.c @@ -35,10 +35,10 @@ #define _XOPEN_SOURCE_EXTENDED #include "config.h" +#include <stdio.h> #include <sys/select.h> #include <stdlib.h> #include <string.h> -#include <stdio.h> #include <wchar.h> #include <sys/time.h> #include <errno.h> |