Implement realpath

This commit is contained in:
jD91mZM2
2018-10-07 10:32:36 +02:00
parent 26d629674a
commit 418a960f3b
11 changed files with 120 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
sys_includes = []
include_guard = "_LIMITS_H"
language = "C"
style = "Tag"
trailer = "#include <bits/limits.h>"
[enum]
prefix_with_name = true
+3
View File
@@ -0,0 +1,3 @@
//! limits.h implementation for relibc
pub const PATH_MAX: usize = 4096;