Commit 49527a32 authored by Noah Misch's avatar Noah Misch

Fix missing gettimeofday() declaration.

This avoids a warning under MinGW versions having gettimeofday(), per
buildfarm member walleye.
parent 1103033a
......@@ -16,13 +16,13 @@
#include <ctype.h>
#include <limits.h>
#include <sys/time.h>
#include <time.h>
#ifdef WIN32
#include "win32.h"
#else
#include <unistd.h>
#include <sys/time.h>
#endif
#include "libpq-fe.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment