repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add routine to initialize and test for the FPU.
[syslinux.git]
/
dos
/
perror.c
blob
e6e82874bfedd307e9aab741d07c6fa6c65bc251
1
#include <stdio.h>
2
#include <errno.h>
3
4
void
perror
(
const char
*
msg
)
5
{
6
printf
(
"%s: error %s
\n
"
,
msg
,
errno
);
7
}