sim: cleanup obsolete NULL fallback

We require C11 which defines NULL, so drop the inconsistent set of
fallback defines in the codebase.
This commit is contained in:
Mike Frysinger
2021-06-06 18:13:41 -04:00
parent dc3de083d5
commit 943f9baa37
13 changed files with 19 additions and 42 deletions

View File

@@ -36,11 +36,6 @@
#include <setjmp.h>
#ifndef NULL
#define NULL 0
#endif
#ifndef min
#define min(a, b) ((a) < (b) ? (a) : (b))
#endif