blob: 8e9ec273e31693e6be039b6cd2e668fcdd169b6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdio.h>
void unused_function(void)
{
printf("This function used to do something useful, but is now no longer called\n");
}
int main(void)
{
printf("We used to call 'unused_function' here.\n");
#if 0
unused_function();
#endif
}
|