Makefile.private: correct the names of prerelease tarballs
[syslinux/sherbszt.git] / dos / perror.c
blob99ab2f81c85d70588372acca7df4ed42fa042bab
1 #include <stdio.h>
2 #include <errno.h>
4 void perror(const char *msg)
6 printf("%s: error %s\n", msg, errno);