* init/Makefile: Build and link with processUser.o.
* init/init.c: Include process_U.h.
---
init/Makefile | 2 +-
init/init.c | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/init/Makefile b/init/Makefile
index ffb82ff..5ae3b50 100644
--- a/init/Makefile
+++ b/init/Makefile
@@ -21,7 +21,7 @@ makemode := server
SRCS = init.c stubs.c
OBJS = $(SRCS:.c=.o) \
startupServer.o notifyServer.o startup_replyUser.o msgServer.o \
- startup_notifyUser.o
+ startup_notifyUser.o processUser.o
target = init
HURDLIBS = shouldbeinlibc
diff --git a/init/init.c b/init/init.c
index e8c2220..d05319d 100644
--- a/init/init.c
+++ b/init/init.c
@@ -55,6 +55,7 @@
#include "startup_S.h"
#include "notify_S.h"
#include "mung_msg_S.h"
+#include "process_U.h"
/* host_reboot flags for when we crash. */
static int crash_flags = RB_AUTOBOOT;
--
1.7.10.4