From f649a4d0fd8c1ca212a50b215ccd7d3d9c40a445 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 9 May 2005 18:04:20 +0000 Subject: [PATCH] Add INIT_LOADBUF --- src/include/init.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/include/init.h b/src/include/init.h index dda4ef3c3..e28a4349c 100644 --- a/src/include/init.h +++ b/src/include/init.h @@ -1,6 +1,7 @@ #ifndef INIT_H #define INIT_H +#include "stddef.h" /* for NULL */ #include "tables.h" /* @@ -42,9 +43,10 @@ struct init_fn { #define INIT_PCIBIOS 05 #define INIT_MEMSIZES 06 #define INIT_RELOCATE 07 -#define INIT_PCMCIA 08 -#define INIT_HEAP 09 -#define INIT_RPC 10 +#define INIT_LOADBUF 08 +#define INIT_PCMCIA 09 +#define INIT_HEAP 10 +#define INIT_RPC 11 /* Macro for creating an initialisation function table entry */ #define INIT_FN( init_order, init_func, reset_func, exit_func ) \