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> 3 4 #pragma once 5 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