boinc/sleeper/sleeper.C

10 lines
121 B
C++
Raw Normal View History

#include "util.h"
#include "boinc_api.h"
int main() {
boinc_init();
while (1) {
boinc_sleep(1);
}
}