mirror of
https://github.com/cc65/cc65.git
synced 2025-01-08 20:31:31 +00:00
Rename a function
git-svn-id: svn://svn.cc65.org/cc65/trunk@66 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
b9ce81c7e3
commit
f1feae3a97
@ -87,10 +87,10 @@ void NeedArg (const char* Opt)
|
||||
|
||||
|
||||
|
||||
void InvSym (const char* Def)
|
||||
/* Print an error about an invalid symbol definition and die */
|
||||
void InvDef (const char* Def)
|
||||
/* Print an error about an invalid definition and die */
|
||||
{
|
||||
fprintf (stderr, "Invalid symbol definition: `%s'\n", Def);
|
||||
fprintf (stderr, "Invalid definition: `%s'\n", Def);
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
|
||||
|
@ -72,8 +72,8 @@ void UnknownOption (const char* Opt);
|
||||
void NeedArg (const char* Opt);
|
||||
/* Print an error about a missing option argument and exit. */
|
||||
|
||||
void InvSym (const char* Def);
|
||||
/* Print an error about an invalid symbol definition and die */
|
||||
void InvDef (const char* Def);
|
||||
/* Print an error about an invalid definition and die */
|
||||
|
||||
const char* GetArg (int* ArgNum, unsigned Len);
|
||||
/* Get an argument for a short option. The argument may be appended to the
|
||||
|
Loading…
Reference in New Issue
Block a user