save ~1½K from the bootfloppy by reusing MirBSD libkern wcwidth(3)

but don’t bother for this for the regular /bin/mksh either
to keep the generic code path tested well
This commit is contained in:
tg
2015-10-24 19:45:23 +00:00
parent 5018e4a21b
commit 1a4f644d6e
2 changed files with 12 additions and 3 deletions

4
expr.c
View File

@ -23,7 +23,7 @@
#include "sh.h"
__RCSID("$MirOS: src/bin/mksh/expr.c,v 1.78 2015/09/05 19:19:03 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/expr.c,v 1.79 2015/10/24 19:45:23 tg Exp $");
/* the order of these enums is constrained by the order of opinfo[] */
enum token {
@ -916,6 +916,7 @@ ksh_access(const char *fn, int mode)
return (rv);
}
#ifndef MIRBSD_BOOTFLOPPY
/* From: X11/xc/programs/xterm/wcwidth.c,v 1.8 2014/06/24 19:53:53 tg Exp $ */
struct mb_ucsrange {
@ -1195,3 +1196,4 @@ utf_wcwidth(unsigned int wc)
return (2);
return (1);
}
#endif