diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-31 09:36:21 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-31 09:36:21 +0000 |
commit | dce9a74733f5315b2f3c0a1cbcfdc439b9a7590e (patch) | |
tree | cf5cd29c7b246d0f0108683da80ca54a675cd717 /w3mimg | |
parent | cvs current (diff) | |
download | w3m-dce9a74733f5315b2f3c0a1cbcfdc439b9a7590e.tar.gz w3m-dce9a74733f5315b2f3c0a1cbcfdc439b9a7590e.zip |
fix compilation warnings
* w3mimgdisplay.c: add #include <string.h> for strlen, strcmp
* w3mimg/fb/fb.c: add #include <string.h> for memset
* w3mimg/fb/fb_w3mimg.c: add #include <string.h> for memset
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'w3mimg')
-rw-r--r-- | w3mimg/fb/fb.c | 3 | ||||
-rw-r--r-- | w3mimg/fb/fb_w3mimg.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/w3mimg/fb/fb.c b/w3mimg/fb/fb.c index a92e585..c936784 100644 --- a/w3mimg/fb/fb.c +++ b/w3mimg/fb/fb.c @@ -1,10 +1,11 @@ -/* $Id: fb.c,v 1.8 2002/10/10 16:16:00 ukai Exp $ */ +/* $Id: fb.c,v 1.9 2002/10/31 09:36:22 ukai Exp $ */ /************************************************************************** fb.c 0.3 Copyright (C) 2002, hito **************************************************************************/ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> #include <fcntl.h> #include <limits.h> diff --git a/w3mimg/fb/fb_w3mimg.c b/w3mimg/fb/fb_w3mimg.c index f521d3e..2733624 100644 --- a/w3mimg/fb/fb_w3mimg.c +++ b/w3mimg/fb/fb_w3mimg.c @@ -1,7 +1,8 @@ -/* $Id: fb_w3mimg.c,v 1.4 2002/09/09 14:00:49 ukai Exp $ */ +/* $Id: fb_w3mimg.c,v 1.5 2002/10/31 09:36:22 ukai Exp $ */ #include <stdio.h> #include <stdlib.h> #include <ctype.h> +#include <string.h> #include "w3mimg/fb/fb.h" #include "w3mimg/fb/fb_img.h" |