2 * Standard integer types
3 * NetWatch system management mode administration console
5 * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved.
6 * This program is free software; you can redistribute and/or modify it under
7 * the terms found in the file LICENSE in the root of this source tree.
16 # error this stdint.h expects either __i386__ or __x86_64__ to be defined
20 typedef signed char int8_t;
21 typedef unsigned char uint8_t;
23 typedef signed short int16_t;
24 typedef unsigned short uint16_t;
26 typedef signed int int32_t;
27 typedef unsigned int uint32_t;
30 typedef signed long int64_t;
31 typedef unsigned long uint64_t;
33 typedef signed long long int64_t;
34 typedef unsigned long long uint64_t;