mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
13 lines
141 B
C
13 lines
141 B
C
#ifndef _SYS_SCHED_H
|
|
#define _SYS_SCHED_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int sched_yield(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|