diff options
author | nijtmans <nijtmans> | 2010-04-20 08:17:20 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-04-20 08:17:20 (GMT) |
commit | a3b62245d461eae0ac5a21520bb3f4a7cff22f68 (patch) | |
tree | b14b56efeb6e96f005aa0454f988f6b043fc40ab /compat/unistd.h | |
parent | 28b0a5826bc67969da9c1f26974ed560eab87261 (diff) | |
download | tk-a3b62245d461eae0ac5a21520bb3f4a7cff22f68.zip tk-a3b62245d461eae0ac5a21520bb3f4a7cff22f68.tar.gz tk-a3b62245d461eae0ac5a21520bb3f4a7cff22f68.tar.bz2 |
Make sure that tkWinPort.h is always included
before tcl.h, otherwise the fallback for TCHAR
might go off before the inclusion of <tchar.h>
Diffstat (limited to 'compat/unistd.h')
-rw-r--r-- | compat/unistd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/unistd.h b/compat/unistd.h index cb9f8c3..396e17c 100644 --- a/compat/unistd.h +++ b/compat/unistd.h @@ -10,7 +10,7 @@ * no representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. * - * RCS: @(#) $Id: unistd.h,v 1.3 2008/05/02 10:28:18 dkf Exp $ + * RCS: @(#) $Id: unistd.h,v 1.4 2010/04/20 08:17:26 nijtmans Exp $ */ #ifndef _UNISTD @@ -18,7 +18,7 @@ #include <sys/types.h> #ifndef _TCL -# include "tcl.h" +# include <tcl.h> #endif #ifndef NULL |