home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Source / GNU / cctools / include / stuff / print.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-15  |  166 b   |  7 lines

  1. #import <stdarg.h>
  2.  
  3. extern void print(
  4.     const char *format, ...) __attribute__ ((format (printf, 1, 2)));
  5. extern void vprint(
  6.     const char *format, va_list ap);
  7.