]> git.sur5r.net Git - cc65/blob - libsrc/common/system.c
Added a C header that translates from the source file's encoding to PetSCII.
[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 __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