1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:47:34 +00:00

LibC: Add sched_yield(), needed for GCC 8.3.0 build.

This commit is contained in:
Andreas Kling 2019-04-22 00:13:41 +02:00
parent a9d09e9020
commit f9d3abf5d0
3 changed files with 25 additions and 1 deletions

9
LibC/sched.h Normal file
View file

@ -0,0 +1,9 @@
#pragma once
#include <sys/cdefs.h>
__BEGIN_DECLS
int sched_yield();
__END_DECLS