source: sbliveos2/trunk/runtime/printf.c@ 200

Last change on this file since 200 was 142, checked in by ktk, 25 years ago

Import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 401 bytes
Line 
1/* $Id: printf.c 142 2000-04-23 14:55:46Z ktk $ */
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.