summaryrefslogtreecommitdiff
path: root/wince/errno.c
diff options
context:
space:
mode:
Diffstat (limited to 'wince/errno.c')
-rw-r--r--wince/errno.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/wince/errno.c b/wince/errno.c
deleted file mode 100644
index 28cd0899..00000000
--- a/wince/errno.c
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// "Extension" implementation of errno.h for Windows CE.
-//
-// I (Simon Howard) release this file to the public domain.
-//
-
-#include <windows.h>
-
-#include "errno.h"
-
-// This should really be a thread-local variable. Oh well.
-
-static int my_errno;
-
-int *_GetErrno()
-{
- my_errno = GetLastError();
- return &my_errno;
-}
-