> > i believe you need to update your libc.h. you need pragmas for > > the "b" format, which were added 2007/0108. > > > > - erik > > > > > > > > > I'm using a distribution downloaded about 2 months ago. The machine has > been installed from scratch.
perhaps you have not included everything necessary?
; cat fmtb.c
#include <u.h>
#include <libc.h>
void
main(void)
{
print("%b\n", 16);
exits("");
}
; 8c -FVTw fmtb.c && 8l fmtb.8 && 8.out
10000
- erik
