summaryrefslogtreecommitdiff
path: root/string
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1992-08-07 21:39:08 +0000
committerRoland McGrath <roland@gnu.org>1992-08-07 21:39:08 +0000
commit725ed2e485d642c1f7bc6e67e1c4723e089f5d29 (patch)
tree599997e1f2c028bea91b468c6a231c6c1edfc6f0 /string
parent12d3ab352c41095061f4823b4c25d1c3bdb935eb (diff)
Formerly ../string/tester.c.~6~
Diffstat (limited to 'string')
-rw-r--r--string/tester.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/string/tester.c b/string/tester.c
index 523b61422a..0542179f21 100644
--- a/string/tester.c
+++ b/string/tester.c
@@ -532,8 +532,8 @@ DEFUN(main, (argc, argv), int argc AND char **argv)
int f;
it = "strerror";
f = open("/", O_WRONLY); /* Should always fail. */
- check(f < 0 && errno > 0 && errno < _sys_nerr, 1);
- equal(strerror(errno), _sys_errlist[errno], 2);
+ check(f < 0 && errno > 0 && errno < sys_nerr, 1);
+ equal(strerror(errno), sys_errlist[errno], 2);
}
{