tmk: fix for Unix build - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit a8bd9e9d8cd029a220ad4b9dad752d26c55bf4c2
(DIR) parent 73661401ea00ef6a862d0a4b292e091b319c25bc
(HTM) Author: Russ Cox <rsc@swtch.com>
Date: Tue, 23 Mar 2021 17:24:58 -0400
mk: fix for Unix build
Diffstat:
M src/cmd/mk/symtab.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/src/cmd/mk/symtab.c b/src/cmd/mk/symtab.c
t@@ -21,7 +21,7 @@ syminit(void)
Symtab *
symlook(char *sym, int space, void *install)
{
- ulong h;
+ unsigned long h;
char *p;
Symtab *s;
t@@ -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;