mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
406 B
31 lines
406 B
/*++
|
|
|
|
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_ */
|