/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/uvwasi/src/debug.h
15 строк
377 B
Colin Ihrig
deps: update to uvwasi 0.0.14
27 дек 2022, 06:51
Не верифицирован
27 дек 2022, 06:51
610b2e4
Код
Авторство
О чём код?
#ifndef __UVWASI_DEBUG_H__ #define __UVWASI_DEBUG_H__ #ifdef UVWASI_DEBUG_LOG #ifndef __STDC_FORMAT_MACROS # define __STDC_FORMAT_MACROS #endif # include <inttypes.h> # define UVWASI_DEBUG(...) \ do { fprintf(stderr, __VA_ARGS__); } while (0) #else # define UVWASI_DEBUG(fmt, ...) #endif #endif /* __UVWASI_DEBUG_H__ */