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:
KJK::Hyperion 2002-10-24 23:29:19 +00:00
parent a42476b9fb
commit 6efd5e3b01
166 changed files with 0 additions and 20265 deletions

View file

@ -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 */