diff options
Diffstat (limited to 'Build/source/texk/kpathsea/xopendir.c')
-rw-r--r-- | Build/source/texk/kpathsea/xopendir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/xopendir.c b/Build/source/texk/kpathsea/xopendir.c index caa4a2642d0..e948eb90131 100644 --- a/Build/source/texk/kpathsea/xopendir.c +++ b/Build/source/texk/kpathsea/xopendir.c @@ -22,7 +22,7 @@ #if !defined(WIN32) || defined(__MINGW32__) DIR * -xopendir P1C(string, dirname) +xopendir (string dirname) { DIR *d = opendir(dirname); @@ -34,7 +34,7 @@ xopendir P1C(string, dirname) #endif /* not WIN32 */ void -xclosedir P1C(DIR *, d) +xclosedir (DIR *d) { #ifdef CLOSEDIR_VOID closedir (d); |