From 93ac4b9ebae3e069cb6940a3931365b8f7292bb1 Mon Sep 17 00:00:00 2001 From: flouthoc Date: Fri, 13 May 2016 22:21:23 +0530 Subject: [PATCH] Removing Warning mplicit declaration of built-in function On gcc v4 and above it gives warning implicit declaration of built-in function 'strcpy' and 'strlen' , i think it needs string.h included there --- .../resources/ncurses_programs/JustForFun/tt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/LDP/howto/docbook/NCURSES-Programming-HOWTO/resources/ncurses_programs/JustForFun/tt.c b/LDP/howto/docbook/NCURSES-Programming-HOWTO/resources/ncurses_programs/JustForFun/tt.c index 4378e670..cb31e302 100644 --- a/LDP/howto/docbook/NCURSES-Programming-HOWTO/resources/ncurses_programs/JustForFun/tt.c +++ b/LDP/howto/docbook/NCURSES-Programming-HOWTO/resources/ncurses_programs/JustForFun/tt.c @@ -1,5 +1,6 @@ #include #include +#include #include #include