diff options
author | Karl Berry <karl@freefriends.org> | 2008-05-05 18:44:23 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-05-05 18:44:23 +0000 |
commit | 92cf63cd066cd3522330a0648c86b13a8f1193c4 (patch) | |
tree | ee9c7cf3cafc05e4eeefdcee594eb0a8fd298512 | |
parent | 05ef3bfa832df78992473d32b92045df9ea474e1 (diff) |
declar function variables extern
git-svn-id: svn://tug.org/texlive/trunk@7872 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/recorder.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index c195c3fbfd9..e8d435d5b49 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,7 @@ +2008-05-05 Karl Berry <karl@tug.org> + + * recorder.h: declare our fn variables extern as they should be. + 2008-05-04 Karl Berry <karl@tug.org> * finish changing license notices to use FSF url instead of diff --git a/Build/source/texk/kpathsea/recorder.h b/Build/source/texk/kpathsea/recorder.h index 7d1ee4e9bc1..392a82c14b1 100644 --- a/Build/source/texk/kpathsea/recorder.h +++ b/Build/source/texk/kpathsea/recorder.h @@ -21,7 +21,7 @@ /* These variables are set by web2c and are used to record filenames for its filename -recorder option. This way they can also be used for files opened by kpathsea, e.g., texmf.cnf */ -void (*kpse_record_input) (const_string); -void (*kpse_record_output) (const_string); +extern void (*kpse_record_input) (const_string); +extern void (*kpse_record_output) (const_string); #endif /* not KPATHSEA_RECORDER_H */ |