Add unlink(), mkdir(), rmdir(), and rename()

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@246 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2007-05-21 14:36:00 +00:00
parent 982949fd81
commit 0cb1595215
14 changed files with 794 additions and 45 deletions
+19
View File
@@ -46,4 +46,23 @@
* Type Definitions
************************************************************/
/************************************************************
* Global Function Prototypes
************************************************************/
#undef EXTERN
#if defined(__cplusplus)
#define EXTERN extern "C"
extern "C" {
#else
#define EXTERN extern
#endif
EXTERN int mkdir(const char *pathname, mode_t mode);
#undef EXTERN
#if defined(__cplusplus)
}
#endif
#endif /* __SYS_STAT_H */