blob: f2eacf07021b3712e6222f72c2625fa07edb336e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <time.h>
int main(int argc, char *argv[]) {
while(1){
cpu_relax();
}
return 0;
}
|