forked from len0rd/rockbox
Remove private memcpy wrapper that is no longer needed since r19847 and may cause issues with newer gcc versions, inspired by patch in FS#10676 by Duy Nguyen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23178 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a5c1ee5cf1
commit
afe08ed8b2
2 changed files with 0 additions and 8 deletions
|
@ -181,11 +181,6 @@ cont:
|
||||||
/* NOTREACHED */
|
/* NOTREACHED */
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void* memcpy(void* dst, const void* src, size_t size)
|
|
||||||
{
|
|
||||||
return rb->memcpy(dst, src, size);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct argvlist
|
struct argvlist
|
||||||
{
|
{
|
||||||
int timedemo; // 1 says there's a timedemo
|
int timedemo; // 1 says there's a timedemo
|
||||||
|
|
|
@ -72,9 +72,6 @@ int my_close(int id);
|
||||||
#define strcat(a,b) rb->strcat((a),(b))
|
#define strcat(a,b) rb->strcat((a),(b))
|
||||||
#define snprintf rb->snprintf
|
#define snprintf rb->snprintf
|
||||||
|
|
||||||
/* Using #define isn't enough with GCC 4.0.1 */
|
|
||||||
inline void* memcpy(void* dst, const void* src, size_t size);
|
|
||||||
|
|
||||||
#define PACKEDATTR __attribute__((packed)) // Needed for a few things
|
#define PACKEDATTR __attribute__((packed)) // Needed for a few things
|
||||||
#define GAMEBASE ROCKBOX_DIR "/doom/"
|
#define GAMEBASE ROCKBOX_DIR "/doom/"
|
||||||
//#define SIMPLECHECKS
|
//#define SIMPLECHECKS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue