• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef __UVWASI_DEBUG_H__
2 #define __UVWASI_DEBUG_H__
3 
4 #ifdef UVWASI_DEBUG_LOG
5 #ifndef __STDC_FORMAT_MACROS
6 # define __STDC_FORMAT_MACROS
7 #endif
8 # include <inttypes.h>
9 # define UVWASI_DEBUG(...)                                                    \
10     do { fprintf(stderr, __VA_ARGS__); } while (0)
11 #else
12 # define UVWASI_DEBUG(fmt, ...)
13 #endif
14 
15 #endif /* __UVWASI_DEBUG_H__ */
16