1
0
mirror of https://github.com/jedisct1/dnsblast.git synced 2024-10-05 18:30:54 +01:00

Merge pull request #1 from olof/fix/posix_macros

Include strings.h and define _POSIX_C_SOURCE
This commit is contained in:
Frank DENIS 2012-05-06 09:45:48 -07:00
commit 47f4d22f15

View File

@ -2,6 +2,8 @@
#ifndef __DNSBLAST_H__
#define __DNSBLAST_H__ 1
#define _POSIX_C_SOURCE 200112L
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/poll.h>
@ -20,6 +22,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <time.h>
#include "dns.h"