aboutsummaryrefslogtreecommitdiff
path: root/jim-posix.c
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 /jim-posix.c
parentcace04153ec0bbeb804dea9ddf32595320b1cc39 (diff)
downloadjimtcl-f97a5a2903b3fbadb0dc0b10143bcf6200d6c937.zip
jimtcl-f97a5a2903b3fbadb0dc0b10143bcf6200d6c937.tar.gz
jimtcl-f97a5a2903b3fbadb0dc0b10143bcf6200d6c937.tar.bz2
extern int errno declaration removed from the posix extension.
Diffstat (limited to 'jim-posix.c')
-rw-r--r--jim-posix.c4
1 files changed, 1 insertions, 3 deletions
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);