mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 21:24:31 +04:00
In file included from print.h:25:0,
from linreg.c:24:
util.h:364:32: error: unknown type name 'time_t'
int rate_limited(int interval, time_t *last);
^
Signed-off-by: Stephen Walker <stephendwalker+github@gmail.com>
22 lines
371 B
Diff
22 lines
371 B
Diff
--- a/raw.c
|
|
+++ b/raw.c
|
|
@@ -20,7 +20,6 @@
|
|
#include <fcntl.h>
|
|
#include <linux/filter.h>
|
|
#include <linux/if_ether.h>
|
|
-#include <net/ethernet.h>
|
|
#include <net/if.h>
|
|
#include <netinet/in.h>
|
|
#include <netpacket/packet.h>
|
|
--- a/util.h
|
|
+++ b/util.h
|
|
@@ -20,6 +20,8 @@
|
|
#ifndef HAVE_UTIL_H
|
|
#define HAVE_UTIL_H
|
|
|
|
+#include <time.h>
|
|
+
|
|
#include "ddt.h"
|
|
#include "ether.h"
|
|
|