diff options
author | Alin Nastac <alin.nastac@gmail.com> | 2020-03-27 11:56:09 +0100 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2020-03-27 13:18:39 +0100 |
commit | dfd0b106f63da5f14c413b483bffd1f09768460e (patch) | |
tree | 7cb1ca7bb7d20a568ee8d01c0aa97210aa9e3f90 | |
parent | b1e83288fdbf9ac80f5377b279404adaf05e0c4d (diff) |
system-linux: fix PATH_MAX undeclared compilation error
Issue was introduced in commit 1321c1bd8fe921986c4eb39c3783ddd827b79543.
Signed-off-by: Alin Nastac <alin.nastac@gmail.com>
-rw-r--r-- | system-linux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system-linux.c b/system-linux.c index d36d287..775b448 100644 --- a/system-linux.c +++ b/system-linux.c @@ -26,6 +26,7 @@ #include <net/if.h> #include <net/if_arp.h> +#include <limits.h> #include <arpa/inet.h> #include <netinet/ether.h> #include <netinet/in.h> |