diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-03-16 12:08:40 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-03-16 12:08:40 +0000 |
commit | 6482937de0dea6d674c05196ece8c3435c645333 (patch) | |
tree | b5d0e509b646dd7f8a41e147fa0d902427138ad4 /Build/source/texk/bibtex8/utils.h | |
parent | 2c4402d9e43aaa7b3148a79ecc078ded4affa73e (diff) |
bibtex8/bibtexu dynamic memory allocation
git-svn-id: svn://tug.org/texlive/trunk@17464 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtex8/utils.h')
-rw-r--r-- | Build/source/texk/bibtex8/utils.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Build/source/texk/bibtex8/utils.h b/Build/source/texk/bibtex8/utils.h index 7d0a0bf095a..f75e0760bff 100644 --- a/Build/source/texk/bibtex8/utils.h +++ b/Build/source/texk/bibtex8/utils.h @@ -104,9 +104,6 @@ /* ** Declaration of public functions defined in utils.c */ -void allocate_arrays (void); -int checkdbg (char *str); -long checklong (char *str); void close_file (const AlphaFile_T file_pointer); void CDECL debug_msg (const int status, const char *printf_fmt, ...); #ifndef KPATHSEA @@ -118,6 +115,8 @@ FILE *open_ip_file (Integer_T search_path); FILE *open_op_file (void); void *mymalloc (const unsigned long bytes_required, const char *var_name); +void *myrealloc (void *old_ptr, const unsigned long bytes_required, + const char *var_name); void parse_cmd_line (int argc, char **argv); void report_bibtex_capacity (void); void report_search_paths (void); |