diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-02-21 09:40:24 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-02-21 09:40:24 +0000 |
commit | 76f11c729a8066c70167e6fe628a2e14abeebeff (patch) | |
tree | da753ee4cfb6cf6da1f17b82e29f686142f2795b /Build/source/texk/kpathsea/lib.h | |
parent | 84446472e9cb4e966d9ff5aaf2bd447a8ffe8abc (diff) |
revert lib.h. replace LIB_FATAL2 by FATAL2 in xgetcwd.c
git-svn-id: svn://tug.org/texlive/trunk@46697 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/lib.h')
-rw-r--r-- | Build/source/texk/kpathsea/lib.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Build/source/texk/kpathsea/lib.h b/Build/source/texk/kpathsea/lib.h index 9592a4790c5..df380f654d6 100644 --- a/Build/source/texk/kpathsea/lib.h +++ b/Build/source/texk/kpathsea/lib.h @@ -1,7 +1,7 @@ /* lib.h: declarations for common, low-level routines in kpathsea. Copyright 1992, 1993, 1994, 1995, 1996, 2008, 2009, 2010, 2011, - 2012, 2015, 2018 Karl Berry. + 2012, 2015 Karl Berry. Copyright 1999, 2000, 2003, 2005 Olaf Weber. This library is free software; you can redistribute it and/or @@ -87,13 +87,8 @@ extern "C" { #define WARNING4(str, e1, e2, e3, e4) \ START_WARNING (); fprintf (stderr, str, e1, e2, e3, e4); END_WARNING () -#if defined (KPSE_COMPAT_API) -#define LIB_START_FATAL() do { \ - fprintf (stderr, "%s: fatal: ", kpse_def->invocation_name); -#else #define LIB_START_FATAL() do { \ - fprintf (stderr, "fatal: "); -#endif + fprintf (stderr, "%s: fatal: ", kpse->invocation_name); #define LIB_FATAL(str) \ LIB_START_FATAL (); fputs (str, stderr); END_FATAL () |