16 lines
		
	
	
	
		
			170 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			170 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <stdio.h>
 | |
| #include "test.h"
 | |
| 
 | |
| int doit(void)
 | |
| {
 | |
|   char buf[128];
 | |
|   int i;
 | |
|   i++;
 | |
| }
 | |
| 
 | |
| int main(int argc, char *argv[])
 | |
| {
 | |
|     doit();
 | |
|     finished();
 | |
|     return 0;
 | |
| }
 |