Rename printf to prevent naming conflict. Also change comment to conform with Rockbox standards.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27562 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Chicoine 2010-07-25 19:35:19 +00:00
parent 803a0edb58
commit 91a45d2ecc
2 changed files with 10 additions and 10 deletions

View file

@ -54,13 +54,13 @@ void *alloc(int size)
if (size + 4 > (int)totalSize)
{
printf("MALLOC BARF");
printf("MALLOC BARF");
printf("MALLOC BARF");
printf("MALLOC BARF");
printf("MALLOC BARF");
printf("MALLOC BARF");
printf("MALLOC BARF");
midi_debug("MALLOC BARF");
midi_debug("MALLOC BARF");
midi_debug("MALLOC BARF");
midi_debug("MALLOC BARF");
midi_debug("MALLOC BARF");
midi_debug("MALLOC BARF");
midi_debug("MALLOC BARF");
/* We've made our point. */
return NULL;
@ -132,8 +132,8 @@ int eof(int fd)
return size+1 == rb->lseek(fd, 0, SEEK_CUR);
}
// Here is a hacked up printf command to get the output from the game.
int printf(const char *fmt, ...)
/* Here is a hacked up printf command to get the output from the game. */
int midi_debug(const char *fmt, ...)
{
static int p_xtpt = 0;
char p_buf[50];

View file

@ -142,7 +142,7 @@ struct Track
void * dataBlock;
};
int printf(const char *fmt, ...);
int midi_debug(const char *fmt, ...);
unsigned char readChar(int file);
int readTwoBytes(int file);
int readFourBytes(int file);