From e967e0cc978d647040ac5616d389e9007d593464 Mon Sep 17 00:00:00 2001 From: Peter Breitenlohner Date: Mon, 16 Mar 2009 15:13:07 +0000 Subject: new reentrant kpathsea API (from Taco) git-svn-id: svn://tug.org/texlive/trunk@12401 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/kpathsea/xstat.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Build/source/texk/kpathsea/xstat.c') diff --git a/Build/source/texk/kpathsea/xstat.c b/Build/source/texk/kpathsea/xstat.c index 678e2fe411e..17a3992c0dd 100644 --- a/Build/source/texk/kpathsea/xstat.c +++ b/Build/source/texk/kpathsea/xstat.c @@ -22,7 +22,7 @@ struct stat -xstat P1C(const_string, path) +xstat (const_string path) { struct stat s; @@ -43,13 +43,12 @@ xstat P1C(const_string, path) // extern int lstat (); */ struct stat -xlstat P1C(const_string, path) +xlstat (const_string path) { struct stat s; if (lstat(path, &s) != 0) - FATAL_PERROR(path); - + FATAL_PERROR(path); return s; } #endif -- cgit v1.2.3