mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-14 22:00:57 +00:00
15 lines
285 B
Diff
15 lines
285 B
Diff
--- a/util/IMdkit/FrameMgr.c
|
|
+++ b/util/IMdkit/FrameMgr.c
|
|
@@ -31,6 +31,11 @@
|
|
#include <stdlib.h>
|
|
#include "FrameMgr.h"
|
|
|
|
+#ifdef __ANDROID__
|
|
+#include <string.h>
|
|
+#define bcopy(src,dest,n) memmove(dest,src,n)
|
|
+#endif
|
|
+
|
|
/* Convenient macro */
|
|
|
|
#define _UNIT(n) ((int)(n) & 0xFF)
|