xref: /llvm-project/clang/test/Analysis/Inputs/errno_func.h (revision d8a2afb244da6cd1c8753115610c74ed0312f2e2)
1 #pragma clang system_header
2 
3 // Define 'errno' as a macro that calls a function.
4 int *__errno_location();
5 #define errno (*__errno_location())
6