diff options
author | James Booth <boothj5@gmail.com> | 2016-05-11 22:30:39 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-05-11 22:30:39 +0100 |
commit | 5439317ba12635d3a8a03e0e55e38eef76ff9b51 (patch) | |
tree | 7e308356789bb00b4592521d8708398fcad0b451 | |
parent | d805d0c8864894e007e64ae9973c519a38bb284a (diff) | |
download | profani-tty-5439317ba12635d3a8a03e0e55e38eef76ff9b51.tar.gz |
Reorder headers in common.c
Fixes unknown type name '_fpos64_t' error on Cygwin
-rw-r--r-- | src/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c index a8282fe7..13a2366c 100644 --- a/src/common.c +++ b/src/common.c @@ -33,9 +33,9 @@ */ #include "config.h" +#include <errno.h> #include <sys/select.h> #include <assert.h> -#include <errno.h> #include <stdlib.h> #include <stdint.h> #include <string.h> |