repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pa.h (INSN_SETS_ARE_DELAYED): Delete.
[official-gcc.git]
/
libio
/
iostrerror.c
blob
348e0956d70f5c461fcf88e0b3bdc1d15c37f255
1
/* This should be replaced by whatever namespace-clean
2
version of strerror you have available. */
3
4
#include
"libioP.h"
5
extern
char
*
strerror
__P
((
int
));
6
7
char
*
8
_IO_strerror
(
errnum
)
9
int
errnum
;
10
{
11
return
strerror
(
errnum
);
12
}