mirror of https://github.com/getdnsapi/getdns.git
Re-add include guards to parseutil.c.
The lack of them breaks the build on Windows. I suspect we may have another copied-from-elsewhere problem.
This commit is contained in:
parent
ca97810ed6
commit
ae854a8650
|
@ -14,8 +14,12 @@
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "gldns/parseutil.h"
|
#include "gldns/parseutil.h"
|
||||||
|
#ifdef HAVE_SYS_TIME_H
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_TIME_H
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#endif
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
gldns_lookup_table *
|
gldns_lookup_table *
|
||||||
|
|
Loading…
Reference in New Issue