OpenMPI  0.1.1
otfinfo_error.h
1 /*
2  This is part of the OTF library. Copyright by ZIH, TU Dresden 2005-2012.
3  Authors: Michael Heyde
4 */
5 
6 #ifndef OTFINFO_ERROR_H
7 #define OTFINFO_ERROR_H
8 
9 #define otfinfo_assert(expr) if(!(expr)) otfinfo_assert_impl(__FILE__, __LINE__, #expr);
10 void otfinfo_assert_impl(const char* f, int l, const char* expr);
11 
12 #endif /* OTFINFO_ERROR_H */