Scan dynamic libraries for GC roots
[delight/core.git] / phobos2 / errno.c
blob2d3c93863fccf42f50715b890e353d1bb8c3fffb
2 /* Make D independent of all the various ways errno can be defined.
3 */
5 #include <errno.h>
7 int getErrno()
9 return errno;
12 int setErrno(int newno)
14 errno = newno;
15 return newno;