From 732a8bfdd5a4d608bd817983bf4a461cb9946e01 Mon Sep 17 00:00:00 2001 From: heademptyshivansh <135796298+heademptyshivansh@users.noreply.github.com> Date: Tue, 26 Nov 2024 13:40:30 +0000 Subject: [PATCH] Update local.c to include missing header unistd.h removes the implicit declaration error on line 73 --- local.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.c b/local.c index c205c5c..2c8feb8 100644 --- a/local.c +++ b/local.c @@ -1,7 +1,7 @@ /* local.c -- dungeon functions which need local definition */ #include "funcs.h" - +#include // this header allows us to use the getuid function(without which it declared an implicit declaration error) #ifdef __AMOS__ #include #endif