diff options
Diffstat (limited to 'src/lib9')
-rw-r--r-- | src/lib9/mkfile | 1 | ||||
-rw-r--r-- | src/lib9/quote.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/lib9/mkfile b/src/lib9/mkfile index 16804b33..7824ff18 100644 --- a/src/lib9/mkfile +++ b/src/lib9/mkfile @@ -10,7 +10,6 @@ NUM=\ # Could add errfmt, but we want to pick it up from lib9 instead. FMTOFILES=\ dofmt.$O\ - errfmt.$O\ fltfmt.$O\ fmt.$O\ fmtfd.$O\ diff --git a/src/lib9/quote.c b/src/lib9/quote.c index 4467377a..32f434c4 100644 --- a/src/lib9/quote.c +++ b/src/lib9/quote.c @@ -1,9 +1,9 @@ #include <u.h> #include <libc.h> -int (*doquote)(int); /* in libfmt */ +extern int (*doquote)(int); extern int __needsquotes(char*, int*); extern int __runeneedsquotes(Rune*, int*); |