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

7 lines
114 B
C

#include <stdio.h>
#include <errno.h>
void perror(const char *msg)
{
printf("%s: error %s\n", msg, errno);
}