aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lfs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lfs.c b/src/lfs.c
index ac3e712..dd41df8 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -354,6 +354,10 @@ static int file_unlock (lua_State *L) {
354} 354}
355 355
356 356
357/*
358** Creates a directory.
359** @param #1 Directory path.
360*/
357static int make_dir (lua_State *L) { 361static int make_dir (lua_State *L) {
358 const char *path = luaL_checkstring (L, 1); 362 const char *path = luaL_checkstring (L, 1);
359 int fail; 363 int fail;