From 1d6b260d32d802b99dcdd3c9e9e3b97c19d3f856 Mon Sep 17 00:00:00 2001 From: sean Date: Mon, 27 Oct 2008 22:08:29 +0000 Subject: [PATCH] Removed stdc directory. This was moved to core/stdc. git-svn-id: http://svn.dsource.org/projects/druntime/trunk@37 4a9d5153-6564-4b3f-b5e1-7e8e9dac548f --- src/common/stdc/errno.c | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/common/stdc/errno.c diff --git a/src/common/stdc/errno.c b/src/common/stdc/errno.c deleted file mode 100644 index 10ca015..0000000 --- a/src/common/stdc/errno.c +++ /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 - - -int getErrno() -{ - return errno; -} - - -int setErrno( int val ) -{ - errno = val; - return val; -} -- 2.43.0