42 47
48
Empty parameter lists are now (void)
on 2:20 PM Oct 21 2025
47
48
1
2
3
4
5
6
7
8
9
10
11
#ifndef ASLEEP_H
#define ASLEEP_H
#include <stdbool.h>
#include "task.h"
extern void ASleep_StartSystem();
extern bool ASleep(float delay, void **value);
extern 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"
extern void ASleep_StartSystem(void);
extern bool ASleep(float delay, void **value);
extern void ASleep_StopSystem(void);
#endif