aboutsummaryrefslogtreecommitdiff
path: root/jim.c
diff options
context:
space:
mode:
authorantirez <antirez>2005-02-27 22:57:35 +0000
committerantirez <antirez>2005-02-27 22:57:35 +0000
commit1e2b529ea3d9d430598d7170435b5dd7ea01b8e2 (patch)
tree9301371839192175ca4a90a4721dae8e517d920a /jim.c
parent4de294e61179961271b5244159c9aea686ba5cb9 (diff)
downloadjimtcl-1e2b529ea3d9d430598d7170435b5dd7ea01b8e2.zip
jimtcl-1e2b529ea3d9d430598d7170435b5dd7ea01b8e2.tar.gz
jimtcl-1e2b529ea3d9d430598d7170435b5dd7ea01b8e2.tar.bz2
Jim_Alloc/Free exported to extensions.
Diffstat (limited to 'jim.c')
-rw-r--r--jim.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/jim.c b/jim.c
index 5c9eb99..8f26ffa 100644
--- a/jim.c
+++ b/jim.c
@@ -404,8 +404,6 @@ void Jim_Panic(char *fmt, ...)
/* -----------------------------------------------------------------------------
* Memory allocation
* ---------------------------------------------------------------------------*/
-static void *Jim_Alloc(int size);
-static char *Jim_StrDup(char *s);
void *Jim_Alloc(int size)
{
@@ -440,8 +438,6 @@ char *Jim_StrDupLen(char *s, int l)
return copy;
}
-#define Jim_Free free
-
/* -----------------------------------------------------------------------------
* Time related functions
* ---------------------------------------------------------------------------*/