summaryrefslogtreecommitdiff
path: root/tests/headers/assert.c
blob: 13ee506c1328d752f1b6ffcd8aab8f6a8e743150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/assert.h.html

#include "core.h"

#define NDEBUG
#include <assert.h>
#ifndef assert
#error
#endif

#undef NDEBUG
#include <assert.h>
#ifndef assert
#error
#endif