From f253f5e3d606702688deecea2162f1c5289d277c Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Wed, 22 Jul 2026 17:27:04 -0400 Subject: actually download file to correct location --- snag/src/util.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'snag/src/util.h') 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 -- cgit v1.2.3