nixpkgs-odroid-hc4/pkgs/test/cc-wrapper/nostdinc-main.c
2025-12-20 09:59:59 +11:00

8 lines
170 B
C

// This one should not come from libc because of -nostdinc
#include <stdio.h>
int main(int argc, char *argv[]) {
// provided by our own stdio.h
foo();
return 0;
}