diff options
Diffstat (limited to 'Source/charon/definitions.h')
-rw-r--r-- | Source/charon/definitions.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/charon/definitions.h b/Source/charon/definitions.h index fe9a5ccbf..958b31302 100644 --- a/Source/charon/definitions.h +++ b/Source/charon/definitions.h @@ -190,6 +190,11 @@ #define min(x,y) (x < y ? x : y) /** + * Debug macro to follow control flow + */ +#define POS printf("%s, line %d\n", __FILE__, __LINE__) + +/** * Papping entry which defines the end of a mapping_t array. */ #define MAPPING_END (-1) |