mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
13 lines
282 B
Diff
13 lines
282 B
Diff
--- a/src/vdetaplib/libvdetap.c
|
|
+++ b/src/vdetaplib/libvdetap.c
|
|
@@ -121,6 +121,10 @@
|
|
return native_open(path, flags, data);
|
|
}
|
|
|
|
+/* musl apparently defines open64 as a macro */
|
|
+#ifdef open64
|
|
+#undef open64
|
|
+#endif
|
|
int open64(const char *path, int flags, ...)
|
|
{
|
|
va_list ap;
|