Initial revision

This commit is contained in:
ceriel
1987-01-05 17:37:37 +00:00
parent 76d4ac5194
commit dc536d3e4a
8 changed files with 294 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/* $Header$ */
#include <system.h>
#include "param.h"
/*VARARGS1*/
char *
sprint(buf, fmt, args)
char *buf, *fmt;
int args;
{
buf[_format(buf, fmt, &args)] = '\0';
return buf;
}