code: drawterm

ref: c1f45eb46dfc4e7bc5afd1d2e2e4308398b4d924
dir: /libc/smprint.c/

View raw version
#include <u.h>
#include <libc.h>
#include "fmtdef.h"

char*
smprint(char *fmt, ...)
{
	va_list args;
	char *p;

	va_start(args, fmt);
	p = vsmprint(fmt, args);
	va_end(args);
	return p;
}