home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warphead.zip / H / QPRINTF.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  254b  |  21 lines

  1. #ifndef QPRINTF
  2. #define QPRINTF
  3.  
  4. #ifndef __stdio_h
  5. #include <stdio.h>
  6. #endif
  7.  
  8.    #ifdef __cplusplus
  9.       extern "C" {
  10.    #endif
  11.  
  12.    int      qprintf( const char *, ... );
  13.  
  14.    #ifdef __cplusplus
  15.       }
  16.    #endif
  17.  
  18.  
  19. #endif // QPRINTF
  20.  
  21.