diff options
Diffstat (limited to 'src/stdlib/realpath.c')
| -rw-r--r-- | src/stdlib/realpath.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdlib/realpath.c b/src/stdlib/realpath.c new file mode 100644 index 00000000..1d0e04e6 --- /dev/null +++ b/src/stdlib/realpath.c @@ -0,0 +1,10 @@ +#include <stdlib.h> + +char * realpath(const char * restrict file_name, char * restrict resolved_name) +{ + return resolved_name; +} + +/* +XOPEN(400) +*/ |
