about summary refs log tree commit diff
path: root/src/base/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/system.h')
-rw-r--r--src/base/system.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/base/system.h b/src/base/system.h
index c9d25260..e55e2ad7 100644
--- a/src/base/system.h
+++ b/src/base/system.h
@@ -949,10 +949,12 @@ int fs_chdir(const char *path);
 		Get the parent directory of a directory
 	
 	Parameters:
-		path - The directory
-		buffer - Buffer to set the parent folder
+		path - The directory string
+
+	Remarks:
+		- The string is treated as zero-termineted string.
 */
-void fs_parent_dir(const char *path, char *buffer);
+void fs_parent_dir(char *path);
 
 /*
 	Group: Undocumented