summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixThrd.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2009-08-16 10:20:19 (GMT)
committernijtmans <nijtmans@noemail.net>2009-08-16 10:20:19 (GMT)
commit2cfc21e7d1311a42d3d84549a7b1794df0a129c4 (patch)
treec2b211d55ab62da0083b9373731797c9c08438ca /unix/tclUnixThrd.c
parente6eba5011fccd6ff44797f23165e12868376dd80 (diff)
downloadtcl-2cfc21e7d1311a42d3d84549a7b1794df0a129c4.zip
tcl-2cfc21e7d1311a42d3d84549a7b1794df0a129c4.tar.gz
tcl-2cfc21e7d1311a42d3d84549a7b1794df0a129c4.tar.bz2
const addition (pkge.c)
Use <pthread.h> in stead of "pthread.h" Eliminate some more gcc warnings FossilOrigin-Name: 4c68b5bfd210fd561b59adf07c4330e3e1e8f304
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];