[project @ 2001-07-13 11:11:34 by rrt]
[ghc-hetmet.git] / ghc / lib / std / cbits / errno.c
1 /* 
2  * (c) The University of Glasgow, 2000-2001
3  *
4  * $Id: errno.c,v 1.6 2001/07/13 11:11:34 rrt Exp $
5  *
6  * GHC Error Number Conversion
7  */
8
9 #include "HsStd.h"
10
11 /* Raw errno */
12 /* Covers up the fact that on Windows this is a function */
13
14 int *ghcErrno(void) {
15   return &errno;
16 }