From: Eric Blake Date: Tue, 10 Jun 2008 12:25:20 +0000 (-0600) Subject: Add missing include. X-Git-Tag: v0.1~7275 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=ae75d79451c1b7ba6085e14b80f94681bec35b1c;p=gnulib.git Add missing include. * tests/test-strstr.c (includes): Add . * tests/test-strcasestr.c (includes): Likewise. * tests/test-memmem.c (includes): Likewise. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 5269090b0..21f293744 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-06-10 Eric Blake + + Add missing include. + * tests/test-strstr.c (includes): Add . + * tests/test-strcasestr.c (includes): Likewise. + * tests/test-memmem.c (includes): Likewise. + 2008-06-10 Bruno Haible * lib/wait-process.c (wait_subprocess): Add an assertion. diff --git a/tests/test-memmem.c b/tests/test-memmem.c index 0061d5460..e429ac096 100644 --- a/tests/test-memmem.c +++ b/tests/test-memmem.c @@ -19,6 +19,7 @@ #include +#include #include #include #include diff --git a/tests/test-strcasestr.c b/tests/test-strcasestr.c index 5e7fd36cd..88798a566 100644 --- a/tests/test-strcasestr.c +++ b/tests/test-strcasestr.c @@ -20,6 +20,7 @@ #include +#include #include #include #include @@ -42,7 +43,7 @@ main () #if HAVE_DECL_ALARM /* Declare failure if test takes too long, by using default abort caused by SIGALRM. All known platforms that lack alarm also lack - memmem, and the replacement memmem is known to not take too + strcasestr, and the replacement memmem is known to not take too long. */ signal (SIGALRM, SIG_DFL); alarm (50); diff --git a/tests/test-strstr.c b/tests/test-strstr.c index 9f2ecde1a..8a05e8837 100644 --- a/tests/test-strstr.c +++ b/tests/test-strstr.c @@ -19,6 +19,7 @@ #include +#include #include #include #include