w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit 6a18f5a5eb85239dd5d22630bca91f5c850ed414
parent 2b21bacc39e703696e140b2f1908420c2dec407b
Author: ukai <ukai>
Date:   Thu, 31 Oct 2002 09:36:21 +0000

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:
MChangeLog | 7+++++++
Mw3mimg/fb/fb.c | 1+
Mw3mimg/fb/fb_w3mimg.c | 1+
Mw3mimgdisplay.c | 1+
4 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,5 +1,12 @@ 2002-10-31 Fumitoshi UKAI <ukai@debian.or.jp> + * 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 + +2002-10-31 Fumitoshi UKAI <ukai@debian.or.jp> + * 0.3.2 release candidate 4 * version.c.in: update diff --git a/w3mimg/fb/fb.c b/w3mimg/fb/fb.c @@ -5,6 +5,7 @@ #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 @@ -2,6 +2,7 @@ #include <stdio.h> #include <stdlib.h> #include <ctype.h> +#include <string.h> #include "w3mimg/fb/fb.h" #include "w3mimg/fb/fb_img.h" diff --git a/w3mimgdisplay.c b/w3mimgdisplay.c @@ -2,6 +2,7 @@ #include <stdio.h> #include <stdlib.h> #include <ctype.h> +#include <string.h> #include "config.h" #include "w3mimg/w3mimg.h"