// test-return.c int return_test(int x) { return x; } int main(int argc, int argv) { return return_test(42); }