source: bootcd/isolinux/syslinux-6.03/dos/perror.c @ 26ffad7

Last change on this file since 26ffad7 was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 114 bytes
Line 
1#include <stdio.h>
2#include <errno.h>
3
4void perror(const char *msg)
5{
6    printf("%s: error %s\n", msg, errno);
7}
Note: See TracBrowser for help on using the repository browser.