00001 #include <stdio.h> 00002 00003 void function_without_source (int a); 00004 00005 int main () 00006 { 00007 function_without_source (1); 00008 return (0); 00009 } 00010 00011 void function_without_source (int a) 00012 { 00013 printf("this source is misssing in the file documentation page\n"); 00014 } 00015