diff options
author | Stu Grossman <grossman@cygnus> | 1995-06-20 17:41:11 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1995-06-20 17:41:11 +0000 |
commit | 8c19daa1e511e29e51a8a9adb7e774452277fbc6 (patch) | |
tree | cd6cb736f766d4c20d0cd3813391ef8684509134 /gdb/gdbtk.c | |
parent | f1b64caa983829f4b24bc449a90fac8bd6797c91 (diff) | |
download | gdb-8c19daa1e511e29e51a8a9adb7e774452277fbc6.zip gdb-8c19daa1e511e29e51a8a9adb7e774452277fbc6.tar.gz gdb-8c19daa1e511e29e51a8a9adb7e774452277fbc6.tar.bz2 |
* gdbtk.c: Add functions Tcl_Malloc, Tcl_Realloc, and Tcl_Free.
Diffstat (limited to 'gdb/gdbtk.c')
-rw-r--r-- | gdb/gdbtk.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gdb/gdbtk.c b/gdb/gdbtk.c index 9a8d0b3..87b9e33 100644 --- a/gdb/gdbtk.c +++ b/gdb/gdbtk.c @@ -68,6 +68,30 @@ static int x_fd; /* X network socket */ static int disassemble_from_exec = -1; +/* Supply malloc calls for tcl/tk. */ + +char * +Tcl_Malloc (size) + unsigned int size; +{ + return xmalloc (size); +} + +char * +Tcl_Realloc (ptr, size) + char *ptr; + unsigned int size; +{ + return xrealloc (ptr, size); +} + +void +Tcl_Free(ptr) + char *ptr; +{ + free (ptr); +} + static void null_routine(arg) int arg; |