Luna/libs/libc/include/sched.h

16 lines
169 B
C
Raw Normal View History

2022-10-15 09:43:13 +00:00
#ifndef _SCHED_H
#define _SCHED_H
#ifdef __cplusplus
extern "C"
{
#endif
/* Yield the processor. */
int sched_yield(void);
#ifdef __cplusplus
}
#endif
#endif