]> git.sur5r.net Git - cc65/blob - libsrc/geos/common/perror.c
added __fastcall__
[cc65] / libsrc / geos / common / perror.c
1 /*
2  * perror.c
3  *
4  * Maciej 'YTM/Elysium' Witkowiak, 15.07.2001
5  */
6
7 #include <stdio.h>
8 #include <string.h>
9 #include <errno.h>
10 #include <geos.h>
11
12 void __fastcall__ perror(const char* msg)
13 {
14
15     DlgBoxOk(msg,strerror(errno));
16
17 }