mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
issues in these areas:
.h's installed
.hP's installed
-lcurses interaction
files needed in ~/legal for copyleft reasons.
11 lines
204 B
C
11 lines
204 B
C
/* This should be replaced by whatever namespace-clean
|
|
version of strerror you have available. */
|
|
|
|
extern char *strerror();
|
|
|
|
char *
|
|
_IO_strerror(errnum)
|
|
int errnum;
|
|
{
|
|
return strerror(errnum);
|
|
}
|