]> git.sur5r.net Git - cc65/blob - system.c
6626ace87672e3c4b785b0778dc90f9b8891a899
[cc65] / 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 __fastcall__ 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