home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tkisrc04.zip / tcl / os2 / tclPort.h < prev    next >
C/C++ Source or Header  |  1998-08-07  |  861b  |  35 lines

  1. /*
  2.  * tclPort.h --
  3.  *
  4.  *    This header file handles porting issues that occur because
  5.  *    of differences between systems.  It reads in platform specific
  6.  *    portability files.
  7.  *
  8.  * Copyright (c) 1994-1995 Sun Microsystems, Inc.
  9.  * Copyright (c) 1996 Illya Vaes
  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.  * SCCS: @(#) tclPort.h 1.15 96/02/07 17:24:21
  15.  */
  16.  
  17. #ifndef _TCLPORT
  18. #define _TCLPORT
  19.  
  20. #if defined(__WIN32__) || defined(_WIN32)
  21. #   include "../win/tclWinPort.h"
  22. #else
  23. #   if defined(MAC_TCL)
  24. #    include "tclMacPort.h"
  25. #   else
  26. #       if (defined(__OS2__) || defined(__EMX__))
  27. #           include "../os2/tclOS2Port.h"
  28. #       else
  29. #           include "../unix/tclUnixPort.h"
  30. #       endif
  31. #   endif
  32. #endif
  33.  
  34. #endif /* _TCLPORT */
  35.