home *** CD-ROM | disk | FTP | other *** search
-
- /* std.h.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.
- */
-
- #ifndef dreamscape_unistd_H
- #define dreamscape_unistd_H
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- // Creates a directory
- void mkdir(const char *directory);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-