[project @ 2003-06-18 08:06:00 by stolz]
[haskell-directory.git] / cbits / errno.c
1 /* 
2  * (c) The University of Glasgow, 2000-2001
3  *
4  * $Id: errno.c,v 1.5 2002/09/25 15:24:07 simonmar Exp $
5  *
6  * GHC Error Number Conversion
7  */
8
9 #include "HsBase.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 }