summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixThrd.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2009-08-16 10:20:19 (GMT)
committernijtmans <nijtmans>2009-08-16 10:20:19 (GMT)
commit0df63f4a63fa3825fa00a0744a5d4868cebf3fd2 (patch)
treec2b211d55ab62da0083b9373731797c9c08438ca /unix/tclUnixThrd.c
parent0c4df9767cafc8b3a0d1c1e472b87610bfa7a84f (diff)
downloadtcl-0df63f4a63fa3825fa00a0744a5d4868cebf3fd2.zip
tcl-0df63f4a63fa3825fa00a0744a5d4868cebf3fd2.tar.gz
tcl-0df63f4a63fa3825fa00a0744a5d4868cebf3fd2.tar.bz2
const addition (pkge.c)
Use <pthread.h> in stead of "pthread.h" Eliminate some more gcc warnings
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r--unix/tclUnixThrd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c
index eac1bc8..b4ba1a0 100644
--- a/unix/tclUnixThrd.c
+++ b/unix/tclUnixThrd.c
@@ -10,14 +10,14 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixThrd.c,v 1.60 2008/08/13 23:08:39 das Exp $
+ * RCS: @(#) $Id: tclUnixThrd.c,v 1.61 2009/08/16 10:20:20 nijtmans Exp $
*/
#include "tclInt.h"
#ifdef TCL_THREADS
-#include "pthread.h"
+#include <pthread.h>
typedef struct ThreadSpecificData {
char nabuf[16];