changed long to unsigned long in SYSTEM.h and SYSTEM.c0 to silence clang

warnings
This commit is contained in:
Norayr Chilingarian 2014-04-10 14:03:53 +04:00
parent d2680335c6
commit 9200db9d21
7 changed files with 3 additions and 3 deletions

BIN
ocat

Binary file not shown.

BIN
showdef

Binary file not shown.

View file

@ -20,7 +20,7 @@
#include "varargs.h"
#endif
extern void *malloc(long size);
extern void *malloc(unsigned long size);
extern void exit(int status);
void (*SYSTEM_Halt)();

View file

@ -13,8 +13,8 @@ uses double # as concatenation operator
#include <alloca.h>
extern void *memcpy(void *dest, const void *src, long n);
extern void *malloc(long size);
extern void *memcpy(void *dest, const void *src, unsigned long n);
extern void *malloc(unsigned long size);
extern void exit(int status);
#define export

BIN
voc

Binary file not shown.

Binary file not shown.

Binary file not shown.