13 lines
135 B
C
13 lines
135 B
C
extern void test1();
|
|
extern void test2();
|
|
|
|
#include "cson.h"
|
|
#include "stdio.h"
|
|
|
|
void main()
|
|
{
|
|
test1();
|
|
test2();
|
|
return;
|
|
}
|