binux-wl/kernel/headerlar/sleep.h

10 lines
203 B
C

// source: https://www.codeproject.com/Articles/1225196/Create-Your-Own-Kernel-In-C-2
#pragma once
#include <stdint.h>
#include <stddef.h>
typedef unsigned int uint32;
void sleep(uint32 timer_count);