allwinner_a64/android/external/syslinux/com32/lib/perror.c
2018-08-08 16:14:42 +08:00

12 lines
159 B
C

/*
* perror.c
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>
void perror(const char *s)
{
fprintf(stderr, "%s: error %d\n", s, errno);
}