home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Science⁄Math / Gnuplot 3.5 for Macintosh / SOURCES 3.5 / dummyroutines.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-12  |  283 b   |  17 lines  |  [TEXT/MPS ]

  1. #include <stdio.h>
  2. #ifdef THINK_C
  3. #include "plot.h"
  4. #include "tout_protos.h"
  5. #endif
  6.  
  7. int chdir(char *fn)
  8. {
  9.     fprintf(stderr,"Sorry, I cannot chdir to %s.\n", fn);
  10.     return((int) -1);
  11.  }
  12.  
  13.  char *getcwd(char *fn,int len){
  14.     fprintf(stderr,"Sorry, I cannot getcwd.\n");
  15.      return ("");
  16.  }
  17.