blob: a8b828b4fe4fbade82f9e436c417ce0ce5ae6b08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __SYSINCLUDE_H
#define __SYSINCLUDE_H
#ifdef BOOTSTRAP
#include "asm/types.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#else /* BOOTSTRAP */
#include "libc/stdlib.h"
#include "libc/string.h"
#endif /* BOOTSTRAP */
extern int printk( const char *fmt, ... ) \
__attribute__ ((format (printf, 1, 2)));
#ifdef BOOTSTRAP
#define printk printf
#endif
#endif /* __SYSINCLUDE_H */
|