Add includes for missing standard headers

We use symbols from each of these and were relying on them being
included by other headers.
pull/1377/head
Jason Petersen 2017-04-19 23:14:15 -06:00
parent 82b03d5cb6
commit f86920f9d6
No known key found for this signature in database
GPG Key ID: 9F1D3510D110ABA9
2 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#include "postgres.h" #include "postgres.h"
#include <float.h>
#include <limits.h> #include <limits.h>
#include "catalog/pg_type.h" #include "catalog/pg_type.h"

View File

@ -20,6 +20,7 @@
#include <arpa/inet.h> #include <arpa/inet.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <math.h>
#include <unistd.h> #include <unistd.h>
#include "access/hash.h" #include "access/hash.h"