changeset 11579:6ca34e75d78f

tests/test-glob.c: Include string.h for strcmp prototype.
author Simon Josefsson <simon@josefsson.org>
date Wed, 20 May 2009 09:43:43 +0200
parents ec1671f198c1
children 89e9741f299f
files ChangeLog tests/test-glob.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-20  Simon Josefsson  <simon@josefsson.org>
+
+	* tests/test-glob.c: Include string.h for strcmp prototype.
+
 2009-05-20  Simon Josefsson  <simon@josefsson.org>
 
 	* modules/getdelim (Depends-on): Add explicit stdint, although it
--- a/tests/test-glob.c
+++ b/tests/test-glob.c
@@ -22,6 +22,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #define ASSERT(expr)							\
   do									\