diff options
-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 */ |