aboutsummaryrefslogtreecommitdiff
path: root/snag/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'snag/src/util.h')
-rw-r--r--snag/src/util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/snag/src/util.h b/snag/src/util.h
index 1a05ab0..081b570 100644
--- a/snag/src/util.h
+++ b/snag/src/util.h
@@ -28,4 +28,8 @@ void print(const char* format, ...) __attribute__((format(printf, 1, 2)));
#define vastrcat(...) vastrcat_(0, __VA_ARGS__, NULL)
char* vastrcat_(int dummy, ...);
+// posix path functions
+#define join_path(...) join_path_(0, __VA_ARGS__, NULL)
+char* join_path_(int dummy, ...);
+
#endif