URI:
       tprint.c - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       tprint.c (270B)
       ---
            1 /* Copyright (c) 2002-2006 Lucent Technologies; see LICENSE */
            2 #include <stdarg.h>
            3 #include "plan9.h"
            4 #include "fmt.h"
            5 #include "fmtdef.h"
            6 
            7 int
            8 print(char *fmt, ...)
            9 {
           10         int n;
           11         va_list args;
           12 
           13         va_start(args, fmt);
           14         n = vfprint(1, fmt, args);
           15         va_end(args);
           16         return n;
           17 }