diff tests/test-strcasestr.c @ 10195:cc40656bc64e

Add missing include. * tests/test-strstr.c (includes): Add <signal.h>. * tests/test-strcasestr.c (includes): Likewise. * tests/test-memmem.c (includes): Likewise. Signed-off-by: Eric Blake <ebb9@byu.net>
author Eric Blake <ebb9@byu.net>
date Tue, 10 Jun 2008 06:25:20 -0600
parents 0553e4d56bcc
children a59b1061e84a
line wrap: on
line diff
--- a/tests/test-strcasestr.c	Tue Jun 10 13:57:21 2008 +0200
+++ b/tests/test-strcasestr.c	Tue Jun 10 06:25:20 2008 -0600
@@ -20,6 +20,7 @@
 
 #include <string.h>
 
+#include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
@@ -42,7 +43,7 @@
 #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);