1 |
/* $Header$ */ |
2 |
/* |
3 |
* tclPort.h -- |
4 |
* |
5 |
* This header file handles porting issues that occur because |
6 |
* of differences between systems. It reads in platform specific |
7 |
* portability files. |
8 |
* |
9 |
* Copyright (c) 1994-1995 Sun Microsystems, Inc. |
10 |
* |
11 |
* See the file "license.terms" for information on usage and redistribution |
12 |
* of this file, and for a DISCLAIMER OF ALL WARRANTIES. |
13 |
* |
14 |
* RCS: @(#) $Id: tclport.h,v 1.1.1.1 2001/06/13 04:45:05 dtashley Exp $ |
15 |
*/ |
16 |
|
17 |
#ifndef _TCLPORT |
18 |
#define _TCLPORT |
19 |
|
20 |
#include "tcl.h" |
21 |
|
22 |
#if defined(__WIN32__) |
23 |
# include "tclWinPort.h" |
24 |
#else |
25 |
# if defined(MAC_TCL) |
26 |
# include "tclMacPort.h" |
27 |
# else |
28 |
# include "../unix/tclUnixPort.h" |
29 |
# endif |
30 |
#endif |
31 |
|
32 |
#endif /* _TCLPORT */ |
33 |
|
34 |
/* End of tclport.h */ |