home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Programming / dlibsrc.arc / CHDIR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-04  |  131 b   |  9 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3.  
  4. int chdir(pathname)
  5.     char *pathname;
  6.     {
  7.     return(errno = gemdos(0x3B, pathname));
  8.     }
  9.