diff options
author | 2000-06-19 21:31:30 +0000 | |
---|---|---|
committer | 2000-06-19 21:31:30 +0000 | |
commit | 3b9977b69e67e7c4e6143906dcafe0e6dedf335d (patch) | |
tree | 8d51a0f7253c197750f29388256f214254f6b262 | |
parent | pass the correct size of the buffer (diff) | |
download | wireguard-openbsd-3b9977b69e67e7c4e6143906dcafe0e6dedf335d.tar.xz wireguard-openbsd-3b9977b69e67e7c4e6143906dcafe0e6dedf335d.zip |
add string.h
-rw-r--r-- | usr.bin/tcfs/tcfsadduser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tcfs/tcfsadduser.c b/usr.bin/tcfs/tcfsadduser.c index 1b91a5adab8..10dfab3f761 100644 --- a/usr.bin/tcfs/tcfsadduser.c +++ b/usr.bin/tcfs/tcfsadduser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcfsadduser.c,v 1.2 2000/06/19 20:35:47 fgsch Exp $ */ +/* $OpenBSD: tcfsadduser.c,v 1.3 2000/06/19 21:31:30 fgsch Exp $ */ /* * Transparent Cryptographic File System (TCFS) for NetBSD @@ -15,6 +15,7 @@ #include <stdio.h> #include <unistd.h> #include <limits.h> +#include <string.h> #include <miscfs/tcfs/tcfs.h> |