Initial revision
This commit is contained in:
14
modules/src/print/print.c
Normal file
14
modules/src/print/print.c
Normal 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));
|
||||
}
|
||||
Reference in New Issue
Block a user