feat(userspace/libc): implement system() function

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-02-20 02:07:04 +02:00
parent b1a107fb65
commit 123d11e4e3
2 changed files with 51 additions and 2 deletions

View File

@ -103,7 +103,7 @@ extern "C"
long strtol(const char *restrict nptr, char **restrict endptr, int base);
long long strtoll(const char *restrict nptr, char **restrict endptr, int base);
unsigned long int strtoul(const char *, char **, int);
int system(const char *);
int system(const char *command);
int ttyslot(void);
int unlockpt(int);
void *valloc(size_t);