diff options
author | antirez <antirez> | 2005-03-02 17:05:04 +0000 |
---|---|---|
committer | antirez <antirez> | 2005-03-02 17:05:04 +0000 |
commit | a6694dabfd53401074f8d9ead211f2981a4c112a (patch) | |
tree | 033ab9044ba95f6df2be7a5c1306a17167eb94ef | |
parent | c4253cf2548af2603141befac83d1a9e7998eafa (diff) | |
download | jimtcl-a6694dabfd53401074f8d9ead211f2981a4c112a.zip jimtcl-a6694dabfd53401074f8d9ead211f2981a4c112a.tar.gz jimtcl-a6694dabfd53401074f8d9ead211f2981a4c112a.tar.bz2 |
removed JIM_EXTENSION define from extensions. Is no longer
useful because only the core has to defile __JIM_CORE__.
Added ctype.h in jim-win32com.c.
-rw-r--r-- | jim-posix.c | 2 | ||||
-rw-r--r-- | jim-win32.c | 1 | ||||
-rw-r--r-- | jim-win32com.c | 4 |
3 files changed, 2 insertions, 5 deletions
diff --git a/jim-posix.c b/jim-posix.c index ca4ec4e..5e942aa 100644 --- a/jim-posix.c +++ b/jim-posix.c @@ -1,5 +1,3 @@ -#define JIM_EXTENSION - #include <sys/types.h> #include <unistd.h> #include <string.h> diff --git a/jim-win32.c b/jim-win32.c index 4cbf481..c336014 100644 --- a/jim-win32.c +++ b/jim-win32.c @@ -26,7 +26,6 @@ #include <psapi.h> #include <ctype.h> -#define JIM_EXTENSION #include "jim.h" #if _MSC_VER >= 1000 diff --git a/jim-win32com.c b/jim-win32com.c index 3576b64..3bab6e8 100644 --- a/jim-win32com.c +++ b/jim-win32com.c @@ -17,15 +17,15 @@ #define STRICT #define WIN32_LEAN_AND_MEAN +#include <stdio.h> #include <windows.h> #include <ole2.h> #include <tchar.h> #include <assert.h> #include <stdarg.h> +#include <ctype.h> -#define JIM_EXTENSION #include "jim.h" -#include <stdio.h> #if _MSC_VER >= 1000 #pragma comment(lib, "shell32") |