1
0
mirror of git://git.suckless.org/sbase synced 2025-01-11 18:09:25 +00:00

Replace strlen with unary_n to test zero length.

This commit is contained in:
noname 2015-02-22 19:37:48 +00:00 committed by sin
parent 7264acf7ed
commit 274f9eaf42

2
test.c
View File

@ -100,7 +100,7 @@ noarg(char **argv)
static int
onearg(char **argv)
{
return strlen(argv[0]);
return unary_n(argv[0]);
}
static int