mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +03:00
10 lines
131 B
C
10 lines
131 B
C
|
|
/* Make D independent of all the various ways errno can be defined.
|
|
*/
|
|
|
|
#include <errno.h>
|
|
|
|
int getErrno()
|
|
{
|
|
return errno;
|
|
}
|