rename estrtol

This commit is contained in:
Connor Lane Smith
2011-06-10 14:55:01 +01:00
parent 61247e3595
commit 954106050f
12 changed files with 13 additions and 13 deletions

2
tail.c
View File

@@ -20,7 +20,7 @@ main(int argc, char *argv[])
while((c = getopt(argc, argv, "n:")) != -1)
switch(c) {
case 'n':
n = abs(strnum(optarg, 0));
n = abs(estrtol(optarg, 0));
if(optarg[0] == '+')
tail = dropinit;
break;