blob: edfbeb44e8c3782ac9b9085489ad74cd27c5ae8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @file lib.h
*
* @author Freya Murphy <freya@freyacat.org>
*
* Kernel C Library
*/
#ifndef _LIB_H
#define _LIB_H
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <lib/kctype.h>
#include <lib/kio.h>
#include <lib/klib.h>
#include <lib/kmath.h>
#include <lib/kstring.h>
#endif /* lib.h */
|