Files
Limine/common/lib/fdt.h
2024-06-11 21:54:22 +02:00

16 lines
383 B
C

#ifndef LIB__FDT_H__
#define LIB__FDT_H__
#if !defined(__x86_64__) && !defined(__i386__)
#include <stddef.h>
#include <stdint.h>
int fdt_set_chosen_string(void *fdt, const char *name, const char *value);
int fdt_set_chosen_uint64(void *fdt, const char *name, uint64_t value);
int fdt_set_chosen_uint32(void *fdt, const char *name, uint32_t value);
#endif
#endif // LIB__FDT_H__