diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-22 14:33:57 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-22 14:33:57 +0000 |
commit | 8107063a61c46a037fc3b41315586714d8f168e4 (patch) | |
tree | 70260c87fd31b61d868d61e2c01b0679978dfbf6 /Build/source/texk/ps2pkm/objects.h | |
parent | 3e2785aecd503a2883b01f915f12a9204ed421b7 (diff) |
replace PVAR[1-3][CH], P[1-9][CH] and AA macros
by ANSI C function declarations and prototypes
git-svn-id: svn://tug.org/texlive/trunk@13885 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/ps2pkm/objects.h')
-rw-r--r-- | Build/source/texk/ps2pkm/objects.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Build/source/texk/ps2pkm/objects.h b/Build/source/texk/ps2pkm/objects.h index 3a6020d0362..2b67f513832 100644 --- a/Build/source/texk/ps2pkm/objects.h +++ b/Build/source/texk/ps2pkm/objects.h @@ -76,11 +76,7 @@ void t1_Free(); /* free memory */ struct xobject *t1_Unique(); /* make a unique temporary copy of an object */ struct xobject *t1_ArgErr(); /* handle argument errors */ struct xobject *t1_TypeErr(); /* handle 'bad type' argument errors */ -#ifdef KPATHSEA -void t1_Consume PVAR1H(int); /* consume a variable number of arguments */ -#else -void t1_Consume(); /* consume a variable number of arguments */ -#endif +void t1_Consume(int, ...); /* consume a variable number of arguments */ struct xobject *t1_Copy(); /* make a new copy, not reference bump PNM */ /*END SHARED*/ |