Added abort() function

svn-id: r12556
This commit is contained in:
Chris Apers 2004-01-20 14:33:03 +00:00
parent 6f525a42e5
commit 3bf6ddaa7b

View File

@ -36,6 +36,7 @@
#define strtol(a,b,c) StrAToI(a)
#define qsort(a,b,c,d) SysQSort((a), (b), (c), (CmpFuncPtr)(&d), 0);
#define rand() SysRandom(0)
#define abort()
MemPtr realloc(MemPtr oldP, UInt32 size);
MemPtr calloc(UInt32 nelem, UInt32 elsize);
@ -45,4 +46,4 @@ void *bsearch(const void *key, const void *base, UInt32 nmemb,
UInt32 size, int (*compar)(const void *, const void *));
#endif
#endif