X-Git-Url: https://www.kengrimes.com/gitweb/?p=henge%2Fwebcc.git;a=blobdiff_plain;f=src%2Fcore%2Fio.c;h=dba85ae7ef7d67a5c36c51ebb8c7cf6d6da71438;hp=631a452b8d257deb101ea4a515dfbcb3206bf152;hb=47ef7f075603faf78809252b03b7d4e99b14e00f;hpb=b339ecf22e987a0d6ac3ddae3511edef47c7869a diff --git a/src/core/io.c b/src/core/io.c index 631a452..dba85ae 100644 --- a/src/core/io.c +++ b/src/core/io.c @@ -30,13 +30,17 @@ void io_quit(void); /** IO initializer */ int io_init() -{} +{ return 0; +} const char* io_get_error() -{} +{ static char err[5] = "Ass!"; + return (const char*)&err; +} void io_quit() -{} +{ +}