1 int bar (void);
2 extern void free (void *);
3 
bar(void)4 int bar (void)
5 {
6   free (0);
7   return 40;
8 }
9