mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
0390c34e88
The left side doesn't look unbalanced.
22 lines
316 B
C
22 lines
316 B
C
/*
|
|
** system.c
|
|
**
|
|
** Stefan Haubenthal, 2003-05-26
|
|
** Ullrich von Bassewitz, 2003-05-27
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int __fastcall__ system (const char* s)
|
|
{
|
|
if (s == NULL) {
|
|
return 0; /* no shell */
|
|
} else {
|
|
return -1; /* always fail */
|
|
}
|
|
}
|
|
|
|
|
|
|