source: cmedia/trunk/Runtime/printf.c@ 354

Last change on this file since 354 was 354, checked in by stevenhl, 17 years ago

Import untested baseline cmedia sources, work products and binaries
Binaries and work products should be deleted from repository.
once new builds are verified to work.

File size: 465 bytes
Line 
1/* $Id: printf.c,v 1.1 2000/04/23 14:55:40 ktk Exp $ */
2
3/* PRINTF.C - Support for PRINTF.SYS, the printf() debugging device driver
4
5 MODIFICATION HISTORY
6 DATE PROGRAMMER COMMENT
7 01-Jul-95 Timur Tabi Creation
8 04-Nov-96 Timur Tabi Updated for Watcom 10.6
9*/
10
11typedef void (__far __loadds __cdecl *PRINTF) (char _far *psz , ...);
12
13#pragma off (unreferenced)
14
15void __far _printf(void)
16{
17}
18
19PRINTF printf = (PRINTF) _printf;
Note: See TracBrowser for help on using the repository browser.