1/**
2 * D header file for GNU/Linux
3 *
4 * $(LINK2 http://sourceware.org/git/?p=glibc.git;a=blob;f=stdlib/errno.h, glibc stdlib/errno.h)
5 */
6module core.sys.linux.errno;
7
8version (linux):
9extern (C):
10nothrow:
11@system:
12
13public import core.stdc.errno;
14import core.sys.linux.config;
15
16static if (_GNU_SOURCE)
17{
18    extern __gshared char* program_invocation_name, program_invocation_short_name;
19    alias error_t = int;
20}
21