Annotation of solidite/libc/include/stdint.h, revision 1.1.1.1

1.1       user        1: /* Copyright (c) 2026 The Solidite Developers
                      2:  *
                      3:  * This program is free software: you can redistribute it and/or modify it
                      4:  * under the terms of the GNU Affero General Public License as published by the
                      5:  * Free Software Foundation, either version 3 of the License, or (at your
                      6:  * option) any later version.
                      7:  *
                      8:  * This program is distributed in the hope that it will be useful, but WITHOUT
                      9:  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
                     10:  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
                     11:  * for more details.
                     12:  *
                     13:  * You should have received a copy of the GNU Affero General Public License
                     14:  * along with this program. If not, see <https://www.gnu.org/licenses/>. */
                     15: 
                     16: #ifndef __STDINT_H__
                     17: #define __STDINT_H__
                     18: 
                     19: typedef unsigned long uint64_t;
                     20: typedef unsigned uint32_t;
                     21: typedef unsigned short uint16_t;
                     22: typedef unsigned char uint8_t;
                     23: 
                     24: typedef uint64_t uint_fast64_t;
                     25: typedef uint64_t uint_fast32_t;
                     26: typedef uint64_t uint_fast16_t;
                     27: typedef uint64_t uint_fast8_t;
                     28: 
                     29: typedef long int64_t;
                     30: typedef int int32_t;
                     31: typedef short int16_t;
                     32: typedef signed char int8_t;
                     33: 
                     34: typedef int64_t int_fast64_t;
                     35: typedef int64_t int_fast32_t;
                     36: typedef int64_t int_fast16_t;
                     37: typedef int64_t int_fast8_t;
                     38: 
                     39: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>