mirror of https://github.com/BOINC/boinc.git
10 lines
121 B
C++
10 lines
121 B
C++
|
#include "util.h"
|
||
|
#include "boinc_api.h"
|
||
|
|
||
|
int main() {
|
||
|
boinc_init();
|
||
|
while (1) {
|
||
|
boinc_sleep(1);
|
||
|
}
|
||
|
}
|