diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-23 13:50:13 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-23 13:50:13 +0000 |
commit | d452c875cf2841085b8240e0a96d2b271f75eb4d (patch) | |
tree | aba6fc817184b18f7a19e6435e2037c5187d5fb3 /Build/source/texk/kpathsea/tex-file.h | |
parent | 3b038424f28fe19e6570593aa7ef8b30758af6eb (diff) |
use ANSI C function definitions and prototypes
use <stdarg.h> instead of <kpathsea/c-vararg.h>
git-svn-id: svn://tug.org/texlive/trunk@13917 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/tex-file.h')
-rw-r--r-- | Build/source/texk/kpathsea/tex-file.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/kpathsea/tex-file.h b/Build/source/texk/kpathsea/tex-file.h index 7ced22fee23..a99d049fd10 100644 --- a/Build/source/texk/kpathsea/tex-file.h +++ b/Build/source/texk/kpathsea/tex-file.h @@ -20,7 +20,7 @@ #define KPATHSEA_TEX_FILE_H #include <kpathsea/c-proto.h> -#include <kpathsea/c-vararg.h> +#include <stdarg.h> #include <kpathsea/types.h> @@ -41,9 +41,9 @@ extern KPSEDLL void kpathsea_maketex_option (kpathsea kpse, const_string fmtname /* Change the list of searched suffixes (alternate suffixes if alternate is true). */ -extern KPSEDLL void kpathsea_set_suffixes PVAR3H(kpathsea kpse, - kpse_file_format_type format, - boolean alternate); +extern KPSEDLL void kpathsea_set_suffixes (kpathsea kpse, + kpse_file_format_type format, + boolean alternate, ...); /* Initialize the info for the given format. This is called automatically by `kpse_find_file', but the glyph searching (for @@ -83,8 +83,8 @@ extern KPSEDLL void kpse_set_program_enabled (kpse_file_format_type fmt, extern KPSEDLL void kpse_maketex_option (const_string fmtname, boolean value); -extern KPSEDLL void kpse_set_suffixes PVAR2H(kpse_file_format_type format, - boolean alternate); +extern KPSEDLL void kpse_set_suffixes (kpse_file_format_type format, + boolean alternate, ...); extern KPSEDLL const_string kpse_init_format (kpse_file_format_type); |