home *** CD-ROM | disk | FTP | other *** search
/ Dream 48 / Amiga_Dream_48.iso / Atari / c / sozobon-v2 / dlibsrc.lha / MKDIR.C < prev    next >
C/C++ Source or Header  |  1988-10-05  |  138b  |  10 lines

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