typedef int IInt; void proba(IInt param) { printf("0"); } void proba(int param) { printf("1"); } int main() { IInt i = 10; proba(i); }