home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tcltk805.zip / tcl805s.zip / tcl8.0.5 / os2 / tclPort.h < prev    next >
C/C++ Source or Header  |  1999-04-23  |  795b  |  34 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.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * RCS: @(#) $Id: tclPort.h,v 1.2 1998/09/14 18:40:01 stanton Exp $
  14.  */
  15.  
  16. #ifndef _TCLPORT
  17. #define _TCLPORT
  18.  
  19. #if defined(__WIN32__) || defined(_WIN32)
  20. #   include "../win/tclWinPort.h"
  21. #else
  22. #   if defined(MAC_TCL)
  23. #    include "tclMacPort.h"
  24. #    else
  25. #       if defined(__OS2__)
  26. #           include "../os2/tclOS2Port.h"
  27. #       else
  28. #           include "../unix/tclUnixPort.h"
  29. #       endif
  30. #    endif
  31. #endif
  32.  
  33. #endif /* _TCLPORT */
  34.