From b9720b9e86a9a9c53933553a182a071ed7b98090 Mon Sep 17 00:00:00 2001 From: Peter Breitenlohner Date: Tue, 23 Jun 2009 18:09:28 +0000 Subject: use ANSI C function declarations, drop P?[CH] macros git-svn-id: svn://tug.org/texlive/trunk@13924 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/web2c/tiedir/ChangeLog | 4 ++++ Build/source/texk/web2c/tiedir/tie-w2c.ch | 18 +++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) (limited to 'Build/source/texk/web2c/tiedir') diff --git a/Build/source/texk/web2c/tiedir/ChangeLog b/Build/source/texk/web2c/tiedir/ChangeLog index b15b32cac5f..39e87c078c6 100644 --- a/Build/source/texk/web2c/tiedir/ChangeLog +++ b/Build/source/texk/web2c/tiedir/ChangeLog @@ -1,3 +1,7 @@ +2009-06-23 Peter Breitenlohner + + * tie-w2c.ch: drop P?C, P?H, use ANSI C function declarations. + 2009-03-07 Peter Breitenlohner * tie-w2c.ch, tie.w: remove trailing whitespace. diff --git a/Build/source/texk/web2c/tiedir/tie-w2c.ch b/Build/source/texk/web2c/tiedir/tie-w2c.ch index 55c5a64c624..4c3d0f61f09 100644 --- a/Build/source/texk/web2c/tiedir/tie-w2c.ch +++ b/Build/source/texk/web2c/tiedir/tie-w2c.ch @@ -42,14 +42,14 @@ typedef char* string; void get_line(i) file_index i; @y -void get_line P1C(file_index, i) +void get_line (file_index i) @z @x void err_loc(i) /* prints location of error */ int i; @y -void err_loc P1C(int, i) /* prints location of error */ +void err_loc (int i) /* prints location of error */ @z @x @@ -68,48 +68,48 @@ void err_loc P1C(int, i) /* prints location of error */ boolean lines_dont_match(i,j) file_index i,j; @y -boolean lines_dont_match P2C(file_index, i, file_index, j) +boolean lines_dont_match (file_index i, file_index j) @z @x void init_change_file(i,b) file_index i; boolean b; @y -void init_change_file P2C(file_index, i, boolean, b) +void init_change_file (file_index i, boolean b) @z @x void put_line(j) file_index j; @y -void put_line P1C(file_index, j) +void put_line (file_index j) @z @x boolean e_of_ch_module(i) file_index i; @y -boolean e_of_ch_module P1C(file_index, i) +boolean e_of_ch_module (file_index i) @z @x boolean e_of_ch_preamble(i) file_index i; @y -boolean e_of_ch_preamble P1C(file_index, i) +boolean e_of_ch_preamble (file_index i) @z @x void usage() @y -void usage P1H(void) +void usage (void) @z @x main(argc,argv) int argc; string *argv; @y -int main P2C(int, argc, string *, argv) +int main (int argc, string *argv) @z @x -- cgit v1.2.3