diff --git a/include/config.h b/include/config.h index 4d040d5..3bc0fe3 100644 --- a/include/config.h +++ b/include/config.h @@ -23,25 +23,25 @@ #define PROGRAM_NAME "OpenBIOS" +typedef unsigned long ulong; +typedef unsigned int uint; +typedef unsigned short ushort; +typedef unsigned char uchar; + +typedef unsigned long long ullong; +typedef long long llong; + #ifndef BOOTSTRAP #ifndef NULL #define NULL ((void*)0) #endif -typedef unsigned long ulong; -typedef unsigned int uint; -typedef unsigned short ushort; -typedef unsigned char uchar; - typedef unsigned int size_t; typedef unsigned int usize_t; typedef signed int ssize_t; typedef signed int off_t; -typedef unsigned long long ullong; -typedef long long llong; - typedef unsigned int time_t; #define UINT_MAX ((uint)-1)