fxlibc/src/stdlib/system.c

12 lines
213 B
C

#include <stdlib.h>
int system(char const *command)
{
/* No command: determine whether there is a shell */
if(!command)
return 0;
/* Command: pretend it fails and return 1 */
return 1;
}