ref: 76daf9f863868356f9c59eadc93ed4d2454dc72d dir: /sys/src/libc/fmt/fmtlock.c/
#include <u.h> #include <libc.h> static Lock fmtl; void _fmtlock(void) { lock(&fmtl); } void _fmtunlock(void) { unlock(&fmtl); }