commit a8bd9e9d8cd029a220ad4b9dad752d26c55bf4c2
parent 73661401ea00ef6a862d0a4b292e091b319c25bc
Author: Russ Cox <rsc@swtch.com>
Date: Tue, 23 Mar 2021 17:24:58 -0400
mk: fix for Unix build
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/cmd/mk/symtab.c b/src/cmd/mk/symtab.c
@@ -21,7 +21,7 @@ syminit(void)
Symtab *
symlook(char *sym, int space, void *install)
{
- ulong h;
+ unsigned long h;
char *p;
Symtab *s;
@@ -45,7 +45,7 @@ symlook(char *sym, int space, void *install)
void
symdel(char *sym, int space)
{
- ulong h;
+ unsigned long h;
char *p;
Symtab *s, *ls;