summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/system.c
blob: 224493dc432ecf8002e80a4f699a089e2b51ae51 (plain)
1
2
3
4
5
6
7
8
#include <stdlib.h> // for system

int system(const char *command)
{
	(void)command;
	// TODO
	return 0;
}