mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4106 1feff8c3-07ed-0310-ac33-dd36852eb9cd
13 lines
188 B
C
13 lines
188 B
C
#ifndef _INC_DEBUG_H
|
|
#define _INC_DEBUG_H
|
|
|
|
#if defined(_MSC_VER)
|
|
#include <crtdbg.h>
|
|
#define ASSERT _ASSERT
|
|
#else
|
|
#include <cassert>
|
|
#define ASSERT assert
|
|
#endif
|
|
|
|
#endif /*_INC_DEBUG_H*/
|