summaryrefslogtreecommitdiff
path: root/src/util/slbt_realpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/slbt_realpath.c')
-rw-r--r--src/util/slbt_realpath.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/util/slbt_realpath.c b/src/util/slbt_realpath.c
new file mode 100644
index 0000000..823f3a0
--- /dev/null
+++ b/src/util/slbt_realpath.c
@@ -0,0 +1,18 @@
+/*******************************************************************/
+/* slibtool: a strong libtool implementation, written in C */
+/* Copyright (C) 2016--2024 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */
+/*******************************************************************/
+
+#include <slibtool/slibtool.h>
+#include "slibtool_realpath_impl.h"
+
+int slbt_util_real_path(
+ int fdat,
+ const char * path,
+ int options,
+ char * buf,
+ size_t buflen)
+{
+ return slbt_realpath(fdat,path,options,buf,buflen);
+}