diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-10 20:57:46 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-10 20:57:46 +0200 |
commit | d928b148d86fcd1e7f26dc265029a36b14c3c1d4 (patch) | |
tree | 0a6db88d137810ffbf009cdd4b4a621e50e96231 /include/debug.h | |
parent | 3209a9d4e88f09790e073af7fa90914a25e150c4 (diff) | |
download | afl++-d928b148d86fcd1e7f26dc265029a36b14c3c1d4.tar.gz |
tackeled some warnings
Diffstat (limited to 'include/debug.h')
-rw-r--r-- | include/debug.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/debug.h b/include/debug.h index ff2845f9..8824ff6b 100644 --- a/include/debug.h +++ b/include/debug.h @@ -28,6 +28,15 @@ #include "types.h" #include "config.h" +/* __FUNCTION__ is non-iso */ +#ifndef __FUNCTION__ +#ifdef __func__ +#define __FUNCTION__ __func__ +#else +#define __FUNCTION__ "func_unknown" +#endif +#endif + /******************* * Terminal colors * *******************/ |