[qfcc] Remove unsigned define

I had forgotten that qfcc supports the keyword, just not the type yet.
This commit is contained in:
Bill Currie 2020-03-25 22:37:38 +09:00
parent 52dcb0a6e2
commit 513bb868fc
2 changed files with 4 additions and 6 deletions

View file

@ -9,9 +9,8 @@ typedef enum {
#ifdef __QFCC__
//FIXME add unsigned to qfcc
#ifndef unsigned
#define unsigned int
//FIXME finish unsigned in qfcc
#ifndef umax
#define umax 0x7fffffff
#endif

View file

@ -4,9 +4,8 @@
#ifdef __QFCC__
#include <Object.h>
//FIXME add unsigned to qfcc
#ifndef unsigned
#define unsigned int
//FIXME finish unsigned in qfcc
#ifndef umax
#define umax 0x7fffffff
#endif