mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
mk: fix for Unix build
This commit is contained in:
parent
73661401ea
commit
a8bd9e9d8c
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ syminit(void)
|
||||||
Symtab *
|
Symtab *
|
||||||
symlook(char *sym, int space, void *install)
|
symlook(char *sym, int space, void *install)
|
||||||
{
|
{
|
||||||
ulong h;
|
unsigned long h;
|
||||||
char *p;
|
char *p;
|
||||||
Symtab *s;
|
Symtab *s;
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ symlook(char *sym, int space, void *install)
|
||||||
void
|
void
|
||||||
symdel(char *sym, int space)
|
symdel(char *sym, int space)
|
||||||
{
|
{
|
||||||
ulong h;
|
unsigned long h;
|
||||||
char *p;
|
char *p;
|
||||||
Symtab *s, *ls;
|
Symtab *s, *ls;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue