1
0
Fork 0
forked from len0rd/rockbox

added a silly stub for oscillograph to remove an #ifdef in the actual code

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2642 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-10-15 07:58:16 +00:00
parent 0ab96fdf70
commit b3438e8b68

View file

@ -194,3 +194,9 @@ int rtc_write(int address, int value)
DEBUGF("write %x to address %x\n", value, address); DEBUGF("write %x to address %x\n", value, address);
return 0; return 0;
} }
bool oscillograph(void)
{
/* does nothing */
return false;
}