This commit is contained in:
Dante
2026-05-22 01:09:33 -07:00
parent c0f390d015
commit 0a5075319f
893 changed files with 379593 additions and 1 deletions

View File

@ -0,0 +1,19 @@
#include "stdlib.h"
void exit(int code) {
exit(code);
}
long int strtol(const char *str, char **endptr, int base) {
return 0;
}
int abs(int n) {
return n < 0 ? -n : n;
}
long long int llabs(long long int n) {
return n < 0 ? -n : n;
}
void qsort(void *base, size_t num, size_t size, int (*compar)(const void *, const void *)) {}