ref: 7d633eeb7f1d5bb10dd51934d95db5f9b4779441
dir: /libc/runesmprint.c/
#include <u.h> #include <libc.h> #include "fmtdef.h" Rune* runesmprint(char *fmt, ...) { va_list args; Rune *p; va_start(args, fmt); p = runevsmprint(fmt, args); va_end(args); return p; }