mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
33ec543467
* Identify last 2 libultra files * BSS left * Update not built files * libultra OK * Makefile formating * Identify last couple data files * libultra section headers * Paddings * Fix one padding * move non_shared to CLFAGS and ASFLAGS * git subrepo pull --force lib/ultralib subrepo: subdir: "lib/ultralib" merged: "b376559" upstream: origin: "git@github.com:decompals/ultralib.git" branch: "main" commit: "b376559" git-subrepo: version: "0.4.6" origin: "https://github.com/ingydotnet/git-subrepo" commit: "110b9eb" * Remove duplicate -non_shared * .hasm * Jenkins * GBIDEFINE
13 lines
281 B
C
13 lines
281 B
C
#ifndef __ASSERT_H__
|
|
#define __ASSERT_H__
|
|
|
|
#ifdef NDEBUG
|
|
#undef assert
|
|
#define assert(EX) ((void)0)
|
|
#else
|
|
extern void __assert(const char *, const char *, int);
|
|
#define assert(EX) ((EX)?((void)0):__assert("EX", __FILE__, __LINE__))
|
|
#endif /* NDEBUG */
|
|
|
|
#endif /* !__ASSERT_H__ */
|