From: Eric Blake Date: Tue, 10 Jun 2008 12:25:20 +0000 (-0600) Subject: Add missing include. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae75d79451c1b7ba6085e14b80f94681bec35b1c;p=pspp 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 5269090b03..21f2937444 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 0061d54608..e429ac096a 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 5e7fd36cda..88798a5666 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 9f2ecde1ae..8a05e88375 100644 --- a/tests/test-strstr.c +++ b/tests/test-strstr.c @@ -19,6 +19,7 @@ #include +#include #include #include #include