blob: d6b9c3364da3b8c3f737750ad157a145b3d32fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef STAGE1_PRIMITIVES_H
#define STAGE1_PRIMITIVES_H
#include <stdint.h>
extern uint32_t LC_CONF_OFFSET;
char* write32_unslid(uint32_t where,
uint32_t what);
char* writebuf_old_unslid(uint32_t where,
char* what,
uint32_t len);
char* writebuf_unslid(uint32_t where,
char* what,
uint32_t len);
#endif
|