printstub.c 169 B

12345678910111213141516171819202122
  1. #include <u.h>
  2. #include <libc.h>
  3. static Lock fmtl;
  4. void
  5. _fmtlock(void)
  6. {
  7. lock(&fmtl);
  8. }
  9. void
  10. _fmtunlock(void)
  11. {
  12. unlock(&fmtl);
  13. }
  14. int
  15. _efgfmt(Fmt*)
  16. {
  17. return -1;
  18. }