add missing headers
2 files changed, 4 insertions(+), 1 deletions(-) M base32.c M main.c
M base32.c +2 -1
@@ 1,4 1,5 @@ #include <stdint.h> +#include <string.h> #include "dat.h" #include "fns.h" @@ 71,4 72,4 @@ b32dec(char *in, int ni, char *out, int } } return n; -} No newline at end of file +}
M main.c +2 -0
@@ 1,5 1,7 @@ #include <stdint.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <time.h> #include <sha1.h>