Add includes for missing standard headers

We use symbols from each of these and were relying on them being
included by other headers.
pull/1938/head
Jason Petersen 2017-04-19 23:14:15 -06:00
parent c6a5074e05
commit 9aeb90ed40
2 changed files with 2 additions and 0 deletions

View File

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

View File

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