11 lines
197 B
C++
Executable File
11 lines
197 B
C++
Executable File
#include <cstdio>
|
|
#include <cstdint>
|
|
#include "scheduler.h"
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
int error;
|
|
printf("Start\n");
|
|
uint32_t nbSched=scheduler(&error,1);
|
|
return 0;
|
|
} |