/* * VAS_EBOOT -- GRand Unified Bootloader * Copyright (C) 2010 Free Software Foundation, Inc. * * VAS_EBOOT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * VAS_EBOOT is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with VAS_EBOOT. If not, see . */ #ifndef VAS_EBOOT_POSIX_LIMITS_H #define VAS_EBOOT_POSIX_LIMITS_H #include #define UCHAR_MAX VAS_EBOOT_UCHAR_MAX #define USHRT_MAX VAS_EBOOT_USHRT_MAX #define UINT_MAX VAS_EBOOT_UINT_MAX #define ULONG_MAX VAS_EBOOT_ULONG_MAX /* gnulib also defines this type */ #ifndef SIZE_MAX # define SIZE_MAX VAS_EBOOT_SIZE_MAX #endif #define SCHAR_MIN VAS_EBOOT_SCHAR_MIN #define SCHAR_MAX VAS_EBOOT_SCHAR_MAX #define SHRT_MIN VAS_EBOOT_SHRT_MIN #define SHRT_MAX VAS_EBOOT_SHRT_MAX #define INT_MIN VAS_EBOOT_INT_MIN #define INT_MAX VAS_EBOOT_INT_MAX #define LONG_MIN VAS_EBOOT_LONG_MIN #define LONG_MAX VAS_EBOOT_LONG_MAX #define CHAR_BIT 8 #define WORD_BIT 32 #endif