Welcome to mirror list, hosted at ThFree Co, Russian Federation.

assert.h - git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84f54718366a4f36b60ed89451f09d12ff64d3c1 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#ifdef NDEBUG
#undef NDEBUG
#include <assert.h>
#define NDEBUG
#else
#include <assert.h>
#endif