summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/cpascal.h
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-06-16 23:53:26 +0000
committerKarl Berry <karl@freefriends.org>2006-06-16 23:53:26 +0000
commitf5e0b65756bd1f791c91935b0eeba0352a2d95f9 (patch)
tree73e1a79c01ec3c918ee44dc24d121cb3e8750f30 /Build/source/texk/web2c/cpascal.h
parenta70eca31896304d624bb5f9473a7a258e0d806e0 (diff)
allow pipes as input or output files; from Taco
git-svn-id: svn://tug.org/texlive/trunk@1688 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/cpascal.h')
-rw-r--r--Build/source/texk/web2c/cpascal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/cpascal.h b/Build/source/texk/web2c/cpascal.h
index f9493690d3b..efe830359dd 100644
--- a/Build/source/texk/web2c/cpascal.h
+++ b/Build/source/texk/web2c/cpascal.h
@@ -134,6 +134,7 @@ typedef FILE *text;
needs to know what path to use. Used by BibTeX, MF, TeX. */
#define aopenin(f,p) open_input (&(f), p, FOPEN_RBIN_MODE)
#define aopenout(f) open_output (&(f), FOPEN_W_MODE)
+#define aclose close_file
/* For faking arrays in tftopl. */
typedef unsigned char *pointertobyte;
@@ -266,7 +267,7 @@ extern TEXDLL void mainbody P1H(void); /* generated by web2c */
/* openclose.c */
extern boolean open_input P3H(FILE **, int, const_string fopen_mode);
extern boolean open_output P2H(FILE **, const_string fopen_mode);
-extern void aclose P1H(FILE *);
+extern void close_file P1H(FILE *);
extern void recorder_change_filename P1H(string);
extern boolean recorder_enabled;
extern string output_directory;