diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2018-08-04 11:06:42 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2018-08-04 11:06:42 +0200 |
commit | f7fda843fba3bcdc7c3a7b43d90008352c19e222 (patch) | |
tree | f5db6404c07efe46ee9d771f3e701eed7ee6c722 | |
parent | 7efe2871fcd0e3bebcebd96618ff7fcbedd46a2c (diff) |
Move include statement (m)
-rw-r--r-- | icmpd.c | 1 | ||||
-rw-r--r-- | icmpd.h | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -12,6 +12,7 @@ #include "util.h" #include "icmp_server.h" #include "icmp_client.h" +#include "mt.h" #define KEEPALIVE_DELAY 5000 // maximum time to send nothing (milliseconds) @@ -2,7 +2,6 @@ #include <stdbool.h> #include <stdint.h> -#include "mt.h" struct icmpd_received { |