Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/* $XConsortium: tclPort.h /main/2 1996/08/08 14:46:02 cde-hp $ */
/*
* tclPort.h --
*
* This header file handles porting issues that occur because
* of differences between systems. It reads in platform specific
* portability files.
*
* Copyright (c) 1994-1995 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* SCCS: @(#) tclPort.h 1.15 96/02/07 17:24:21
*/
#ifndef _TCLPORT
#define _TCLPORT
#if defined(__WIN32__) || defined(_WIN32)
# include "../win/tclWinPort.h"
#else
# if defined(MAC_TCL)
# include "tclMacPort.h"
# else
# include "tclUnixPort.h"
# endif
#endif
#endif /* _TCLPORT */