1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Allow for warning-free build of libraries.

This commit is contained in:
Oliver Schmidt 2013-05-09 14:24:13 +02:00
parent 85885001b1
commit 4d35517f79

View File

@ -518,6 +518,10 @@ static char IsAbortKey (char C)
if (C == CH_STOP) {
return 1;
}
#endif
#if !defined(CH_ESC) && !defined(CH_STOP)
/* Avoid compiler warning about unused parameter */
(void) C;
#endif
return 0;
}