powerpc-ofw-boot/include/ofw.h

11 lines
244 B
C
Raw Normal View History

2023-07-01 11:07:36 +00:00
#include <stdint.h>
2023-07-01 11:23:50 +00:00
#define SERVICE(name, len, args, rets) \
char _service[len] = name; \
ofw_arg.service = _service; \
ofw_arg.n_args = args; \
ofw_arg.n_rets = rets;
2023-07-01 03:34:00 +00:00
typedef int phandle;
typedef int ihandle;