1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 17:30:06 +00:00
cc65/libsrc/common/system.c
Greg King 0390c34e88 Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
2014-06-30 16:51:07 -04:00

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 */
}
}