0 branches 0 tags
33 37
42
43 44
Remove unnecessary include
on 9:24 AM Oct 20 2025
asleep.h
41
42
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ASLEEP_H
#define ASLEEP_H
#include <stdbool.h>
#include "task.h"
#include "cor_thread_local.h"
void ASleep_StartSystem();
bool ASleep(float delay, void **value);
void ASleep_StopSystem();
#endif
1
2
3
4
5
6
7
8
9
10
11
#ifndef ASLEEP_H
#define ASLEEP_H
#include <stdbool.h>
#include "task.h"
void ASleep_StartSystem();
bool ASleep(float delay, void **value);
void ASleep_StopSystem();
#endif