]> git.sur5r.net Git - cc65/blob - libsrc/common/system.c
Call interrupt handlers with carry clear
[cc65] / libsrc / common / system.c
1 /*
2  * system.c
3  *
4  * Stefan Haubenthal, 2003-05-26
5  * Ullrich von Bassewitz, 2003-05-27
6  */
7
8 #include <stdio.h>
9 #include <stdlib.h>
10
11 int system (const char* s)
12 {
13     if (s == NULL) {
14         return 0;               /* no shell */
15     } else {
16         return -1;              /* always fail */
17     }
18 }
19
20
21