010-typedef.c (83B)
1 typedef int myint; 2 myint f(myint x) { return x; } 3 int main(void) { return f(13); }