mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
c52034c59a
git-svn-id: svn://svn.cc65.org/cc65/trunk@2342 b7a2c559-68d2-44c3-8de9-860c34a00d81
22 lines
304 B
C
22 lines
304 B
C
/*
|
|
* system.c
|
|
*
|
|
* Stefan Haubenthal, 2003-05-26
|
|
* Ullrich von Bassewitz, 2003-05-27
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int system (const char* s)
|
|
{
|
|
if (s == NULL) {
|
|
return 0; /* no shell */
|
|
} else {
|
|
return -1; /* always fail */
|
|
}
|
|
}
|
|
|
|
|
|
|