]> git.llucax.com Git - software/druntime.git/commitdiff
Removed stdc directory. This was moved to core/stdc.
authorsean <sean@4a9d5153-6564-4b3f-b5e1-7e8e9dac548f>
Mon, 27 Oct 2008 22:08:29 +0000 (22:08 +0000)
committersean <sean@4a9d5153-6564-4b3f-b5e1-7e8e9dac548f>
Mon, 27 Oct 2008 22:08:29 +0000 (22:08 +0000)
git-svn-id: http://svn.dsource.org/projects/druntime/trunk@37 4a9d5153-6564-4b3f-b5e1-7e8e9dac548f

src/common/stdc/errno.c [deleted file]

diff --git a/src/common/stdc/errno.c b/src/common/stdc/errno.c
deleted file mode 100644 (file)
index 10ca015..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/**
- * This file contains wrapper functions for macro-defined C rouines.
- *
- * Copyright: Copyright (c) 2005-2008, The D Runtime Project
- * License:   BSD Style, see LICENSE
- * Authors:   Sean Kelly
- */
-#include <errno.h>
-
-
-int getErrno()
-{
-    return errno;
-}
-
-
-int setErrno( int val )
-{
-    errno = val;
-    return val;
-}