aboutsummaryrefslogtreecommitdiff
path: root/jim-load-static-exts.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-11-15 11:24:31 +1000
committerSteve Bennett <steveb@workware.net.au>2010-11-24 09:40:45 +1000
commit96466972c70a61becc8c332d0b991038ab7028f1 (patch)
tree9dcead1ec018bb47361ac9a1781af499ab9c804f /jim-load-static-exts.c
parent373b721510fd2d0754a41cc70a3b7cfd02e929bd (diff)
downloadjimtcl-96466972c70a61becc8c332d0b991038ab7028f1.zip
jimtcl-96466972c70a61becc8c332d0b991038ab7028f1.tar.gz
jimtcl-96466972c70a61becc8c332d0b991038ab7028f1.tar.bz2
Remove the bio extension and add 'copyto' to aio.
The bio extension is a hangover from TinyTcl. Since Jim supports binary strings, there isn't much need for it except for 'bio copy'. So move this to aio as 'copyto' and implement 'file copy' in terms of it. Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim-load-static-exts.c')
-rw-r--r--jim-load-static-exts.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/jim-load-static-exts.c b/jim-load-static-exts.c
index ccc4c7f..003b74b 100644
--- a/jim-load-static-exts.c
+++ b/jim-load-static-exts.c
@@ -54,8 +54,5 @@ int Jim_InitStaticExtensions(Jim_Interp *interp)
#ifdef jim_ext_syslog
LOAD_EXT(syslog);
#endif
-#ifdef jim_ext_bio
- LOAD_EXT(bio);
-#endif
return JIM_OK;
}