home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / amiga / normal / Printf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-12  |  192 b   |  9 lines

  1. #include <exec/types.h>
  2. #include <dos/dos.h>
  3. #include <inline/dos.h>
  4. /* LONG Printf( STRPTR format, ... ); */
  5. LONG Printf(STRPTR fmt, LONG tag1,...)
  6. {
  7.     return(VPrintf(fmt, (LONG *) &tag1));
  8. }
  9.