home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <stdarg.h>
- #include <errno.h>
-
- #include <proto/dos.h>
-
- /************************************************************************/
-
- #undef vprintf
-
- int vprintf(const char *FormatString, va_list Params)
-
- {
- int Result;
-
- Result=VPrintf((char *)FormatString, Params);
- if (Result==-1)
- {
- errno=IoErr();
- stdout->Flags.Error=1;
- }
- return Result;
- }
-