msvcError.h 1.1 KB
Newer Older
1
/*****************************************************************************\
S
Shengliang Guan 已提交
2 3 4 5 6 7 8 9 10 11 12 13
*                                                                             *
*   Filename:	    error.h						      *
*                                                                             *
*   Description:    DOS/WIN32 port of the GNU CoreUtils library error funct.  *
*                                                                             *
*   Notes:	    Gotcha: 						      *
*		    The Windows SDK also contains a file called error.h	      *
*		    See C:\Program Files\Microsoft SDKs\Windows\v7.0\INCLUDE  *
*									      *
*   History:								      *
*    2012-10-21 JFL Created this file.                                        *
*									      *
14
*         Copyright 2016 Hewlett Packard Enterprise Development LP          *
S
Shengliang Guan 已提交
15 16 17 18 19 20 21 22 23 24 25
* Licensed under the Apache 2.0 license - www.apache.org/licenses/LICENSE-2.0 *
\*****************************************************************************/

#ifndef _ERROR_H_
#define _ERROR_H_

#include "msvclibx.h"

extern void error(int status, int errnum, const char *format, ...);

#endif