diff options
Diffstat (limited to 'test/bsort.c')
-rw-r--r-- | test/bsort.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/test/bsort.c b/test/bsort.c index 89d7ddb..3d4561e 100644 --- a/test/bsort.c +++ b/test/bsort.c @@ -1,19 +1,16 @@ -/* bsort() requires <stdlib.h> */ - -/* example taken pretty much directly from SuS */ - /* * Items: bsort( - * Requires: <stdlib.h> * Standardized-By: SuS * Not-Detected-by: gcc-4.4.3 + Linux */ +/* example taken pretty much directly from SuS */ + #ifndef __DEHEADER__ #include <stdio.h> +#include <string.h> #endif #include <stdlib.h> -#include <string.h> #define TABSIZE 1000 |