17 lines
170 B
C
17 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;
|
||
|
}
|