From f163dcf6f956584fbe15086718251a455274278f Mon Sep 17 00:00:00 2001 From: Charles Forsyth Date: Sun, 4 Oct 2015 21:37:23 +0100 Subject: [PATCH] declare sysfatal as lib function --- plan9.h | 1 + u9fs.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/plan9.h b/plan9.h index e7bbb1c..757710a 100644 --- a/plan9.h +++ b/plan9.h @@ -193,6 +193,7 @@ struct Dir { long readn(int, void*, long); void remotehost(char*, int); +void sysfatal(char*, ...); enum { NAMELEN = 28, diff --git a/u9fs.c b/u9fs.c index fcf7e86..3ccb106 100644 --- a/u9fs.c +++ b/u9fs.c @@ -72,7 +72,6 @@ void* emalloc(size_t); void* erealloc(void*, size_t); char* estrdup(char*); char* estrpath(char*, char*, int); -void sysfatal(char*, ...); int okuser(char*); void rversion(Fcall*, Fcall*);