From d677d3fe830899926072af6dfffefb16ab6b50bd Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 27 May 2014 14:21:46 -0400 Subject: fix missing declaration of strcpy in implementation of tmpnam --- src/stdio/tmpnam.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stdio/tmpnam.c b/src/stdio/tmpnam.c index 92f699c2..c3f5a2ff 100644 --- a/src/stdio/tmpnam.c +++ b/src/stdio/tmpnam.c @@ -2,6 +2,7 @@ #include #include #include +#include #include "syscall.h" #define MAXTRIES 100 -- cgit v1.2.1