#ifndef _SCHED_H
#define _SCHED_H

#ifdef __cplusplus
extern "C"
{
#endif

    /* Yield the processor. */
    int sched_yield(void);

#ifdef __cplusplus
}
#endif

#endif