Add routine to initialize and test for the FPU.
[syslinux.git] / dos / perror.c
blobe6e82874bfedd307e9aab741d07c6fa6c65bc251
1 #include <stdio.h>
2 #include <errno.h>
4 void perror(const char *msg)
6 printf("%s: error %s\n", msg, errno);