ref: 47d3af71a33e242099a6a6130dcbe7ab4de9a895 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); }