mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-06 13:15:08 +01:00
15 lines
180 B
C
15 lines
180 B
C
|
#ifndef __KERNEL_UTILS_H_
|
||
|
#define __KERNEL_UTILS_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void init_kernel_syscalls();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // __KERNEL_UTILS_H_
|