|
|
|
|
|
by SAI_Peregrinus
644 days ago
|
|
Unless you're writing bare-metal embedded code. Then it's possible to have 0 software dependencies. You can provide your own freestanding portion of libc & crt0 if using C, then if desired use those to write your own memory management (`malloc`, `calloc`, `realloc`, and `free`), then use those to write the rest of your own libc. |
|