summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/atou.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-03-16 15:13:07 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-03-16 15:13:07 +0000
commite967e0cc978d647040ac5616d389e9007d593464 (patch)
tree1f33ce27a77473b2e90b549d42399b73d4123497 /Build/source/texk/kpathsea/atou.c
parent49f1fb6887627cdb7cf524aaef9b92108c894381 (diff)
new reentrant kpathsea API (from Taco)
git-svn-id: svn://tug.org/texlive/trunk@12401 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/atou.c')
-rw-r--r--Build/source/texk/kpathsea/atou.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/atou.c b/Build/source/texk/kpathsea/atou.c
index c609cc1d2f2..54edb046b82 100644
--- a/Build/source/texk/kpathsea/atou.c
+++ b/Build/source/texk/kpathsea/atou.c
@@ -18,12 +18,11 @@
#include "config.h"
unsigned
-atou P1C(const_string, s)
+atou (const_string s)
{
int i = atoi (s);
if (i < 0)
FATAL1 ("I expected a positive number, not %d", i);
-
return i;
}