Remove stale code

This commit is contained in:
Fierelier 2024-02-22 19:46:20 +01:00
parent bf640567d4
commit 6754bebe87
2 changed files with 0 additions and 18 deletions

View File

@ -30,15 +30,6 @@
#error "Compilation failed."
#endif
void system_error(const char * command) {
printf("* %s\n",command);
int code = system(command);
if (code != 0) {
printf("Error %d, quitting.\n",code);
exit(code);
}
}
int _call_proc(char * argv[]) {
#if PLATFORM_LINUX
pid_t pid;

View File

@ -56,15 +56,6 @@
#error "Compilation failed."
#endif
void system_error(const char * command) {
printf("* %s\n",command);
int code = system(command);
if (code != 0) {
printf("Error %d, quitting.\n",code);
exit(code);
}
}
int _call_proc(char * argv[]) {
#if PLATFORM_LINUX
pid_t pid;