4f7ee97ec9
git-svn-id: svn://kolibrios.org@4680 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
196 B
C
17 lines
196 B
C
|
|
#ifndef __lispassert_h__
|
|
#define __lispassert_h__
|
|
|
|
|
|
#include "choices.h"
|
|
|
|
#ifdef USE_ASSERT
|
|
#include <assert.h>
|
|
#define LISPASSERT(x) assert(x)
|
|
#else
|
|
#define LISPASSERT(x)
|
|
#endif
|
|
|
|
#endif
|
|
|