setjmp.S: use C-style comments
[syslinux.git] / com32 / lib / perror.c
blob45585cd57739eed2f97cc8796526429d24ee18ef
1 /*
2 * perror.c
3 */
5 #include <errno.h>
6 #include <stdio.h>
7 #include <string.h>
9 void perror(const char *s)
11 fprintf(stderr, "%s: error %d\n", s, errno);