diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/replace/README | 3 | ||||
-rw-r--r-- | source3/lib/replace/replace.h | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/source3/lib/replace/README b/source3/lib/replace/README index 8e0e659c7d..d63847556c 100644 --- a/source3/lib/replace/README +++ b/source3/lib/replace/README @@ -77,6 +77,9 @@ CHAR_BIT Macros: va_copy __FUNCTION__ +__FILE__ +__LINE__ +__location__ __STRING MIN MAX diff --git a/source3/lib/replace/replace.h b/source3/lib/replace/replace.h index a5455be2b6..0d462b613d 100644 --- a/source3/lib/replace/replace.h +++ b/source3/lib/replace/replace.h @@ -439,6 +439,10 @@ typedef int bool; #define __STRING(x) #x #endif +#ifndef __location__ +#define __location__ __FILE__ ":" __STRING(__LINE__) +#endif + #if MMAP_BLACKLIST #undef HAVE_MMAP #endif |