sl@0: /* sl@0: * limits.h -- sl@0: * sl@0: * This is a dummy header file to #include in Tcl when there sl@0: * is no limits.h in /usr/include. There are only a few sl@0: * definitions here; also see tclPort.h, which already sl@0: * #defines some of the things here if they're not arleady sl@0: * defined. sl@0: * sl@0: * Copyright (c) 1991 The Regents of the University of California. sl@0: * Copyright (c) 1994 Sun Microsystems, Inc. sl@0: * sl@0: * See the file "license.terms" for information on usage and redistribution sl@0: * of this file, and for a DISCLAIMER OF ALL WARRANTIES. sl@0: * sl@0: * RCS: @(#) $Id: limits.h,v 1.2 1998/09/14 18:39:44 stanton Exp $ sl@0: */ sl@0: sl@0: #define LONG_MIN 0x80000000 sl@0: #define LONG_MAX 0x7fffffff sl@0: #define INT_MIN 0x80000000 sl@0: #define INT_MAX 0x7fffffff sl@0: #define SHRT_MIN 0x8000 sl@0: #define SHRT_MAX 0x7fff