code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(12 lines)
1 // This is a workaround fix for an issue on some systems that don't have `__GLIBC__` defined
2 // and run into problems with <unistr.h>
4 #pragma once
6 #ifndef __GLIBC__
7 #define __GLIBC__ 2
8 #include <unistr.h> // IWYU pragma: export
9 #undef __GLIBC__
10 #else
11 #include <unistr.h> // IWYU pragma: export
12 #endif