/* $Id: strerror.c,v 1.4 2002/10/29 04:45:43 rex 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 * UPDATE HISTORY: * 20/01/2002: Created */ #include #include #include static char *__errstr = ""; char *strerror(int errnum) { INFO("errnum %#x", errnum); TODO("getting error string not currently implemented"); errno = EINVAL; return (__errstr); } /* EOF */