diff options
| author | Linus Nordberg <linus@nordu.net> | 2016-03-09 12:04:01 +0100 |
|---|---|---|
| committer | Linus Nordberg <linus@nordu.net> | 2016-03-11 16:19:21 +0100 |
| commit | 404c2f37c4b19c2b6d79b4e2b0ac1c9fb5a7d089 (patch) | |
| tree | d3c795e8cd78ac36be3a5f2f97fdc065071c9df1 | |
| parent | 24cc012a218dceae88b19e696c014623ed04cc3f (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
@@ -2,6 +2,7 @@ * See LICENSE for information about licensing. */ +#include <string.h> #include "radsecproxy.h" #include "debug.h" #include "fticks.h" diff --git a/radsecproxy-hash.c b/radsecproxy-hash.c index 7d1e467..9adf66e 100644 --- a/radsecproxy-hash.c +++ b/radsecproxy-hash.c @@ -9,6 +9,7 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <string.h> #include "radsecproxy.h" #include "fticks_hashmac.h" |
