aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-05 12:13:30 +0000
committerantirez <antirez>2005-03-05 12:13:30 +0000
commitf97a5a2903b3fbadb0dc0b10143bcf6200d6c937 (patch)
tree8af7219047a13b8a36b3feec17579864d5949b42
parentcace04153ec0bbeb804dea9ddf32595320b1cc39 (diff)
downloadjimtcl-f97a5a2903b3fbadb0dc0b10143bcf6200d6c937.zip
jimtcl-f97a5a2903b3fbadb0dc0b10143bcf6200d6c937.tar.gz
jimtcl-f97a5a2903b3fbadb0dc0b10143bcf6200d6c937.tar.bz2
extern int errno declaration removed from the posix extension.
-rw-r--r--ChangeLog12
-rw-r--r--jim-posix.c4
2 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6a90a4a..09ed3d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2005-03-05 11:45 patthoyts
+
+ * jim.c, jim.h: Added Jim_GetAssocData api. This for permitting
+ packages to register a data structure with a Jim interpreter.
+
+2005-03-05 10:46 antirez
+
+ * ChangeLog, jim.c, jim.h: removed strcasecmp() and isascii(). Now
+ the Jim core is fully ANSI-C excluding the [load] command. I plan
+ to add a JIM_FORCE_ANSIC ifdef to exclude the load command for
+ compilation.
+
2005-03-05 10:34 antirez
* AUTHORS, ChangeLog, README, jim.c, jim.h, test.tcl: [switch]
diff --git a/jim-posix.c b/jim-posix.c
index 76129c7..940f0dd 100644
--- a/jim-posix.c
+++ b/jim-posix.c
@@ -1,7 +1,7 @@
/* Jim - POSIX extension
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jim-posix.c,v 1.9 2005/03/04 15:37:54 antirez Exp $
+ * $Id: jim-posix.c,v 1.10 2005/03/05 12:13:30 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,8 +27,6 @@
#define JIM_EXTENSION
#include "jim.h"
-extern int errno;
-
static void Jim_PosixSetError(Jim_Interp *interp)
{
Jim_SetResultString(interp, strerror(errno), -1);