summaryrefslogtreecommitdiff
blob: 93c3f288864b70c7257200300ab11b2f6231a97c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fix warning:
libc_wrapper.c:54: warning: implicit declaration of function usleep

--- a/src/backend/libc_wrapper.c
+++ b/src/backend/libc_wrapper.c
@@ -27,6 +27,8 @@
 
+#define _BSD_SOURCE
 #include <stdio.h>
 #include "xfree.h"
+#include "config.h"
 
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>