diff options
author | antirez <antirez> | 2005-03-02 19:27:19 +0000 |
---|---|---|
committer | antirez <antirez> | 2005-03-02 19:27:19 +0000 |
commit | 83c8e8e0391e59ba26ad10f105ef949fba281a2d (patch) | |
tree | fe5c3d2e2081a39ae45a0009a1325460d6a2acee /jim-posix.c | |
parent | a6694dabfd53401074f8d9ead211f2981a4c112a (diff) | |
download | jimtcl-83c8e8e0391e59ba26ad10f105ef949fba281a2d.zip jimtcl-83c8e8e0391e59ba26ad10f105ef949fba281a2d.tar.gz jimtcl-83c8e8e0391e59ba26ad10f105ef949fba281a2d.tar.bz2 |
shell and library splitted. Now jim.c contains only the
language implementation, while the shell is into jimsh.c,
that is actually the first example of embedder of Jim.
Important changes in jim.h to make Jim play well with
extensions/embedders at the same time, and to deal
with multiple files.
Extensions now must define JIM_EXTENSION before to include
jim.h, embedders must define JIM_EMBEDDED before to include jim.h.
Diffstat (limited to 'jim-posix.c')
-rw-r--r-- | jim-posix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/jim-posix.c b/jim-posix.c index 5e942aa..ca230e4 100644 --- a/jim-posix.c +++ b/jim-posix.c @@ -3,6 +3,7 @@ #include <string.h> #include <errno.h> +#define JIM_EXTENSION #include "jim.h" extern int errno; |