MCPcopy Create free account
hub / github.com/GJDuck/e9patch / printf_unlocked

Function printf_unlocked

examples/stdlib.c:4231–4238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4229}
4230
4231static int printf_unlocked(const char *format, ...)
4232{
4233 va_list ap;
4234 va_start(ap, format);
4235 int result = vfprintf_unlocked(stdout, format, ap);
4236 va_end(ap);
4237 return result;
4238}
4239
4240static void perror(const char *msg)
4241{

Callers

nothing calls this directly

Calls 1

vfprintf_unlockedFunction · 0.85

Tested by

no test coverage detected