Initial revision

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

14
modules/src/print/print.c Normal file
View File

@@ -0,0 +1,14 @@
/* $Header$ */
#include <system.h>
#include "param.h"
/*VARARGS1*/
print(fmt, args)
char *fmt;
int args;
{
char buf[SSIZE];
sys_write(STDOUT, buf, _format(buf, fmt, &args));
}