summaryrefslogtreecommitdiffstats
path: root/public/sdk/inc/posix/errno.h
blob: ca1801f6644a7dfac8f8d05e74b85d600a69541b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*++

Copyright (c) 1989-1996  Microsoft Corporation

Module Name:

   errno.h

Abstract:

   This module contains the implementation defined values for the POSIX error
   number as described in section 2.5 of IEEE P1003.1/Draft 13.

--*/

#ifndef _ERRNO_
#define _ERRNO_

#include <sys/errno.h>

#ifdef __cplusplus
extern "C" {
#endif

extern int errno;

#ifdef __cplusplus
}
#endif

#endif /* _ERRNO_ */