]> git.llucax.com Git - software/druntime.git/blob - src/core/stdc.c
6e4ac64bab4b6606407123e73ff5e0d3201712bb
[software/druntime.git] / src / core / stdc.c
1 /**
2  * This file contains wrapper functions for macro-defined C rouines.
3  *
4  * Copyright: Copyright (c) 2005-2008, The D Runtime Project
5  * License:   BSD Style, see LICENSE
6  * Authors:   Sean Kelly
7  */
8 #include <errno.h>
9
10
11 int _d_getErrno()
12 {
13     return errno;
14 }
15
16
17 int _d_setErrno( int val )
18 {
19     errno = val;
20     return val;
21 }