bootsect.inc: try to catch obvious .0 problems
[profile/ivi/syslinux.git] / dos / perror.c
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 }