13 lines
174 B
C
13 lines
174 B
C
#ifdef CHANGED
|
|
#include "syscall.h"
|
|
|
|
void f(int c) {
|
|
PutString("Thead!");
|
|
}
|
|
|
|
int main(){
|
|
//int i;
|
|
ThreadCreate(f, 66);
|
|
PutString("end of main()\n");
|
|
}
|
|
#endif
|