avoid redefinition of NDEBUG

fixes https://github.com/OpenSC/OpenSC/issues/1799
This commit is contained in:
Frank Morgner 2020-01-07 11:27:10 +01:00
parent 4d2b860c7f
commit fe44567d2b
1 changed files with 2 additions and 0 deletions

View File

@ -71,8 +71,10 @@
/* disable asserts */
#ifndef SIMCLIST_DEBUG
#ifndef NDEBUG
#define NDEBUG
#endif
#endif
#include <assert.h>