void malloc(); void free(); void this_is_not_possible(); int main(int argc, char** bla) { if(argc) { malloc(); } if(argc) { free(); if(!argc) { this_is_not_possible(); } } }