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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/base/system.h b/src/base/system.h
index 62fe02e9..3d0d5cc7 100644
--- a/src/base/system.h
+++ b/src/base/system.h
@@ -970,10 +970,13 @@ int fs_chdir(const char *path);
 	Parameters:
 		path - The directory string
 
+	Returns:
+		Returns 0 on success, 1 on failure.
+
 	Remarks:
 		- The string is treated as zero-termineted string.
 */
-void fs_parent_dir(char *path);
+int fs_parent_dir(char *path);
 
 /*
 	Group: Undocumented