15 lines
168 B
C
15 lines
168 B
C
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
|
||
|
char*
|
||
|
smprint(char *fmt, ...)
|
||
|
{
|
||
|
va_list args;
|
||
|
char *p;
|
||
|
|
||
|
va_start(args, fmt);
|
||
|
p = vsmprint(fmt, args);
|
||
|
va_end(args);
|
||
|
return p;
|
||
|
}
|