(no title)
platinumrad | 1 month ago
``` int add(int a, int b) { #ifndef FREESTANDING printf("adding %d and %d\n", a, b); # return a + b; } ```
> You still share logic by compiling the same source multiple times
What's the benefit of this approach over sharing code via libraries?
JhonPork|1 month ago