home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_02 / 8n02061b < prev    next >
Text File  |  1990-03-01  |  246b  |  16 lines

  1. *****Listing 2*****
  2.  
  3. /* files.h */
  4.  
  5. #if TARGET == 1 
  6.     #define MASTER_FILE "DBAO:[direct]master.date" #else
  7.     #define MASTER_FILE "A:\direct\master.date"
  8. #endif
  9.  
  10. /* source.c */
  11.  
  12. #include "files.h"
  13.  
  14. ...
  15.     fp = fopen(MASTER_FILE, "r");
  16.