home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / unixlib / !UnixLib / test / c / getcwd < prev    next >
Encoding:
Text File  |  1994-03-08  |  257 b   |  15 lines

  1. #include <stdio.h>
  2. #include <unistd.h>
  3. #include <sys/syslib.h>
  4.  
  5. int
  6. main ()
  7.  
  8. {
  9.   char buffer[512];
  10.   printf ("Current dir = %s\n", getcwd (buffer, 512));
  11.   __riscos_ver = __OS_RISCOS_200;
  12.   printf ("Current dir = %s\n", getcwd (buffer, 512));
  13.   return 0;
  14. }
  15.