home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / rexx / rexxfunc / ezrxfunc / h / standard.h < prev   
C/C++ Source or Header  |  1993-07-26  |  710b  |  32 lines

  1. /*
  2.  * standard.h -- Standard header file to include with every file.  Doesn't
  3.  *               actually include any OS/2 specific stuff.
  4.  */
  5.  
  6. #ifndef STANDARD_H_INCLUDED
  7. #define STANDARD_H_INCLUDED
  8.  
  9.     /* Common C headers */
  10.     
  11.     #include <assert.h>    
  12.     #include <ctype.h>    
  13.     #include <string.h>  
  14.     #include <stdio.h>  
  15.     #include <stdlib.h>
  16.     #include <stddef.h>
  17.     
  18.     #define NULLCHAR '\0'
  19.     #define NLCHAR   '\n'
  20.     #define TABCHAR  '\t'
  21.     
  22.     /* Use this to suppress unreferenced variable warnings */
  23.     
  24.     #define place_holder( x )   ((void)x)
  25.     
  26.     #ifndef TRUE
  27.         #define FALSE   0
  28.         #define TRUE    1
  29.     #endif
  30.     
  31. #endif
  32.