summaryrefslogtreecommitdiff
path: root/apps/plugins/chessbox
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-01-24 22:57:57 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-01-24 22:57:57 +0000
commit499426caf953627696415515c4a95513d5dbc329 (patch)
tree01924fa67b9bf133a7c986274ced07d7e66c978d /apps/plugins/chessbox
parent2490262eee17c3dcff0a39fb4011662dfdfc4478 (diff)
downloadrockbox-499426caf953627696415515c4a95513d5dbc329.tar.gz
rockbox-499426caf953627696415515c4a95513d5dbc329.zip
remove MEM_FUNCTION_WRAPPERS, and private mem* implementations from plugins, and replace with pluginlib implementations in plugins/lib/gcc-support.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19847 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/chessbox')
-rw-r--r--apps/plugins/chessbox/chessbox.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/plugins/chessbox/chessbox.c b/apps/plugins/chessbox/chessbox.c
index 64f8965947..1504f8a7cb 100644
--- a/apps/plugins/chessbox/chessbox.c
+++ b/apps/plugins/chessbox/chessbox.c
@@ -86,12 +86,6 @@ const char *level_string[] = { "Level 1: 60 moves / 5 min" ,
86/* "While thinking" command */ 86/* "While thinking" command */
87int wt_command = COMMAND_NOP; 87int wt_command = COMMAND_NOP;
88 88
89/* GCC wants this to be present for some targets */
90void* memcpy(void* dst, const void* src, size_t size)
91{
92 return rb->memcpy(dst, src, size);
93}
94
95/* ---- Get the board column and row (e2 f.e.) for a physical x y ---- */ 89/* ---- Get the board column and row (e2 f.e.) for a physical x y ---- */
96void xy2cr ( short x, short y, short *c, short *r ) { 90void xy2cr ( short x, short y, short *c, short *r ) {
97 if (computer == black ) { 91 if (computer == black ) {