mdig : fix compilation on some gcc versions

This commit is contained in:
bolvan 2019-05-18 07:42:27 +03:00
parent 1ce5609038
commit 744d582c5f
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
CC ?= gcc
CFLAGS += -s -O3
LIBS =
LIBS = -lpthread
SRC_FILES = *.c
all: mdig

View File

@ -3,6 +3,8 @@
// ip list >stdout
// errors, verbose >stderr
#define _GNU_SOURCE
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>