/* Limits.h, Copyright (c) by , Swiss Federal Institute of Technology, Computer Engineering and Networks Laboratory. TOPSY -- A Teachable Operating System. Implementation of a tiny and simple micro kernel for teaching purposes. For further information, please visit http://www.tik.ee.ethz.ch/~topsy This software is provided under the terms of the GNU General Public Licence. A full copy of the GNU GPL is provided in the file COPYING found in the development root of Topsy. */ /* compiler and target machine dependent limits */ #ifndef __LIMITS_H__ #define __LIMITS_H__ #include "Unix.h" /* we use some other limti names */ #define SHORT_MIN SHRT_MIN #define SHORT_MAX SHRT_MAX #define UNSIGNED_SHORT_MAX USHRT_MAX #define UNSIGNED_INT_MAX UINT_MAX #endif