axle OS
x86_32 UNIX-like hobby OS
src
std
std.h
1
#ifndef STD_H
2
#define STD_H
3
4
#ifndef NULL
5
#define NULL (0)
6
#endif
7
8
#include <stdint.h>
9
#include "std_base.h"
10
#include "common.h"
11
#include "ctype.h"
12
#include "string.h"
13
//TODO combine memory and heap functions
14
#include "memory.h"
15
#include "kheap.h"
16
#include "panic.h"
17
#include "timer.h"
18
#include "printf.h"
19
20
#endif // STD_H
Generated by
1.8.14