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:
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"