ESTER
Evolution STEllaire en Rotation
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
debug.h
Go to the documentation of this file.
1 extern "C" {
2 #include <stdio.h>
3 }
4 
5 #ifdef DEBUG
6 
7 #define DEBUG_FUNCNAME do {\
8  fprintf(stderr, "%s\n", __PRETTY_FUNCTION__); \
9 } while(0)
10 
11 #else
12 
13 #define DEBUG_FUNCNAME do {\
14 } while(0)
15 
16 #endif