1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-07 15:25:31 +00:00

Removed an unused function.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4361 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2009-10-11 15:10:55 +00:00
parent c221b3c8cf
commit 583b9f8fcc

View File

@@ -6,8 +6,8 @@
/* */
/* */
/* */
/* (C) 2000-2004 Ullrich von Bassewitz */
/* R<EFBFBD>merstrasse 52 */
/* (C) 2000-2009, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
@@ -401,19 +401,6 @@ StrBuf* InitLine (StrBuf* Buf)
void PushLine (const StrBuf* Buf)
/* Push a copy of Buf onto the input stack */
{
CollAppend (&InputStack, Line);
Line = NewStrBuf ();
SB_Copy (Line, Buf);
/* Make CurC and NextC valid */
GetInputChar ();
}
int NextLine (void)
/* Get a line from the current input. Returns 0 on end of file. */
{