mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-13 04:32:09 +01:00
13 lines
424 B
Diff
13 lines
424 B
Diff
--- a/libraries/liblmdb/mdb.c
|
|
+++ b/libraries/liblmdb/mdb.c
|
|
@@ -77,8 +77,7 @@
|
|
|
|
#if defined(__mips) && defined(__linux)
|
|
/* MIPS has cache coherency issues, requires explicit cache control */
|
|
-#include <asm/cachectl.h>
|
|
-extern int cacheflush(char *addr, int nbytes, int cache);
|
|
+#include <sys/cachectl.h>
|
|
#define CACHEFLUSH(addr, bytes, cache) cacheflush(addr, bytes, cache)
|
|
#else
|
|
#define CACHEFLUSH(addr, bytes, cache)
|