ref: 0d5c37265c4c473970b6dbe75ded11d823669939 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); }