1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00

Squeezed out a few bytes

git-svn-id: svn://svn.cc65.org/cc65/trunk@3034 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-05-13 21:17:58 +00:00
parent 35aea65c61
commit 51752caa56

View File

@ -20,7 +20,7 @@
char* __fastcall__ fgets (char* s, unsigned size, FILE* f)
{
int i = 0;
unsigned i;
int c;
if (size == 0) {