diff options
author | Linus Nordberg <linus@nordu.net> | 2016-03-09 12:04:01 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2016-03-09 12:04:01 +0100 |
commit | 4c9e9cf5ef9eeb2bb79695a235f2dc7919789bcd (patch) | |
tree | db92e9132f3377cf963c3fc485dba921d388a029 | |
parent | 69027c1090ab9e8a63fab7114854a23a0b6a36b5 (diff) |
#include <string.h> for memcpy() and strcmp().
-rw-r--r-- | fticks.c | 1 | ||||
-rw-r--r-- | radsecproxy-hash.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,7 @@ /* Copyright (c) 2011, NORDUnet A/S */ /* See LICENSE for licensing information. */ +#include <string.h> #include "radsecproxy.h" #include "debug.h" #include "fticks.h" diff --git a/radsecproxy-hash.c b/radsecproxy-hash.c index 0080d80..c55301b 100644 --- a/radsecproxy-hash.c +++ b/radsecproxy-hash.c @@ -4,6 +4,7 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <string.h> #include "radsecproxy.h" #include "fticks_hashmac.h" |