aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2021-03-23 17:24:58 -0400
committerRuss Cox <rsc@swtch.com>2021-03-23 20:54:29 -0400
commita8bd9e9d8cd029a220ad4b9dad752d26c55bf4c2 (patch)
tree79c8fcbb68af9bfdd1b45699edf711ba4488887e /src
parent73661401ea00ef6a862d0a4b292e091b319c25bc (diff)
mk: fix for Unix build
Diffstat (limited to 'src')
-rw-r--r--src/cmd/mk/symtab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/mk/symtab.c b/src/cmd/mk/symtab.c
index 2bb28ba8..da02f897 100644
--- 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;