get rid of stdint.h stuff because it confuses the microsoft compiler

This commit is contained in:
mpc
2004-12-02 22:16:27 +00:00
committed by zzz
parent 8abd99d134
commit a4946272d0
3 changed files with 31 additions and 44 deletions

View File

@@ -57,7 +57,6 @@
#endif
#if OS == CYGWIN
#define FAST32_IS_LONG
#define INET_ADDRSTRLEN 16
#define NO_GETHOSTBYNAME2
#define NO_INET_NTOP
@@ -72,9 +71,8 @@
* Standard C99 includes - if your compiler doesn't have these, it's time to
* upgrade
*/
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h> // bool
#include <stddef.h> // size_t
/*
* System includes
@@ -116,6 +114,13 @@
typedef signed long ssize_t;
#endif
/*
* I'm too lazy to type "unsigned"
*/
typedef unsigned char byte;
typedef unsigned int uint;
typedef unsigned short ushort;
/*
* Prints out the file name, line number, and function name before log message
*/