home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Applications / Gnuplot 3.5 / source / dummyroutines.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-11  |  283 b   |  17 lines  |  [TEXT/R*ch]

  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.