home *** CD-ROM | disk | FTP | other *** search
-
- /* low-level.c.unistd
- *
- * Dreamscape - C++ class library for RISC OS
- * Copyright (c) 1996 Mark Seaborn <mseaborn@argonet.co.uk>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- * See the Dreamscape documentation for more information.
- */
-
- #include "OS:osfile.h"
-
- #include "unistd.h"
-
-
- void mkdir(const char *directory)
- {
- osfile_create_dir(directory, 0);
- }
-