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
This commit is contained in:
flouthoc 2016-05-13 22:21:23 +05:30
parent 8b630324ee
commit 93ac4b9eba
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#include <curses.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>