1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Reorder headers in common.c and inputwin.c

Fixes unknown type name '_fpos64_t' error on Cygwin
This commit is contained in:
James Booth 2016-05-11 23:32:43 +01:00
parent 662f991196
commit b5233064cc
2 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@
*/ */
#include "config.h" #include "config.h"
#include <errno.h>
#include <sys/select.h> #include <sys/select.h>
#include <assert.h> #include <assert.h>
#include <errno.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>

View File

@ -35,12 +35,12 @@
#define _XOPEN_SOURCE_EXTENDED #define _XOPEN_SOURCE_EXTENDED
#include "config.h" #include "config.h"
#include <errno.h>
#include <sys/select.h> #include <sys/select.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <wchar.h> #include <wchar.h>
#include <sys/time.h> #include <sys/time.h>
#include <errno.h>
#include <readline/readline.h> #include <readline/readline.h>
#include <readline/history.h> #include <readline/history.h>