summaryrefslogtreecommitdiff
path: root/Build/source/texk/bibtexu/utils.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-03-16 12:08:40 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-03-16 12:08:40 +0000
commit6482937de0dea6d674c05196ece8c3435c645333 (patch)
treeb5d0e509b646dd7f8a41e147fa0d902427138ad4 /Build/source/texk/bibtexu/utils.h
parent2c4402d9e43aaa7b3148a79ecc078ded4affa73e (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/bibtexu/utils.h')
-rw-r--r--Build/source/texk/bibtexu/utils.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Build/source/texk/bibtexu/utils.h b/Build/source/texk/bibtexu/utils.h
index 28a76fd6c70..c36e8170c13 100644
--- a/Build/source/texk/bibtexu/utils.h
+++ b/Build/source/texk/bibtexu/utils.h
@@ -107,9 +107,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 close_u_file (const UFILE * u_file_pointer);
void CDECL debug_msg (const int status, const char *printf_fmt, ...);
@@ -124,6 +121,8 @@ FILE *open_op_file (void);
//UFILE *open_op_u_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);