diff options
Diffstat (limited to 'bin/test/test.c')
-rw-r--r-- | bin/test/test.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/test/test.c b/bin/test/test.c index 1570238300e9..a35c5b424d3f 100644 --- a/bin/test/test.c +++ b/bin/test/test.c @@ -14,9 +14,6 @@ * as a builtin for /bin/sh (#define SHELL). */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <sys/stat.h> @@ -201,7 +198,7 @@ main(int argc, char **argv) p++; if (strcmp(p, "[") == 0) { if (strcmp(argv[--argc], "]") != 0) - error("missing ]"); + error("missing ']'"); argv[argc] = NULL; } |