mirror of
https://github.com/dlang/phobos.git
synced 2025-05-02 08:00:48 +03:00
phobos 0.99
This commit is contained in:
parent
f86a362105
commit
5b1e376698
10 changed files with 332 additions and 15 deletions
6
errno.c
6
errno.c
|
@ -8,3 +8,9 @@ int getErrno()
|
|||
{
|
||||
return errno;
|
||||
}
|
||||
|
||||
int setErrno(int newno)
|
||||
{
|
||||
errno = newno;
|
||||
return newno;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue