mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:23:01 +00:00
POSIX+ says goodbye and leaves. It used to be fun, now it's just painful
svn path=/trunk/; revision=3653
This commit is contained in:
parent
a42476b9fb
commit
6efd5e3b01
166 changed files with 0 additions and 20265 deletions
|
@ -1,27 +0,0 @@
|
|||
/* $Id: strerror.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $
|
||||
*/
|
||||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS POSIX+ Subsystem
|
||||
* FILE: subsys/psx/lib/psxdll/string/strerror.c
|
||||
* PURPOSE: Get error message string
|
||||
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
|
||||
* UPDATE HISTORY:
|
||||
* 20/01/2002: Created
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <psx/debug.h>
|
||||
|
||||
static char *__errstr = "<strerror() unsupported>";
|
||||
char *strerror(int errnum)
|
||||
{
|
||||
INFO("errnum %#x", errnum);
|
||||
TODO("getting error string not currently implemented");
|
||||
errno = EINVAL;
|
||||
return (__errstr);
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue