]> git.llucax.com Git - software/druntime.git/blob - src/common/core/stdc/errno.c
Add .gitignore files
[software/druntime.git] / src / common / core / stdc / errno.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 getErrno()
12 {
13     return errno;
14 }
15
16
17 int setErrno( int val )
18 {
19     errno = val;
20     return val;
21 }