Luna/libs/libc/include/sched.h
2022-10-15 11:43:13 +02:00

16 lines
169 B
C

#ifndef _SCHED_H
#define _SCHED_H
#ifdef __cplusplus
extern "C"
{
#endif
/* Yield the processor. */
int sched_yield(void);
#ifdef __cplusplus
}
#endif
#endif