home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / dreamscape / source / Dreamscape / Sources / low-level / c / unistd < prev    next >
Encoding:
Text File  |  1996-09-01  |  577 b   |  23 lines

  1.  
  2. /* low-level.c.unistd
  3.  *
  4.  * Dreamscape - C++ class library for RISC OS
  5.  * Copyright (c) 1996 Mark Seaborn <mseaborn@argonet.co.uk>
  6.  *
  7.  * This library is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU Library General Public
  9.  * License as published by the Free Software Foundation; either
  10.  * version 2 of the License, or (at your option) any later version.
  11.  * See the Dreamscape documentation for more information.
  12.  */
  13.  
  14. #include "OS:osfile.h"
  15.  
  16. #include "unistd.h"
  17.  
  18.  
  19. void mkdir(const char *directory)
  20. {
  21.   osfile_create_dir(directory, 0);
  22. }
  23.