1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-09 11:30:29 +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:
cuz 2000-06-14 07:48:27 +00:00
parent b9ce81c7e3
commit f1feae3a97
2 changed files with 5 additions and 5 deletions

View File

@ -87,10 +87,10 @@ void NeedArg (const char* Opt)
void InvSym (const char* Def) void InvDef (const char* Def)
/* Print an error about an invalid symbol definition and die */ /* 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); exit (EXIT_FAILURE);
} }

View File

@ -72,8 +72,8 @@ void UnknownOption (const char* Opt);
void NeedArg (const char* Opt); void NeedArg (const char* Opt);
/* Print an error about a missing option argument and exit. */ /* Print an error about a missing option argument and exit. */
void InvSym (const char* Def); void InvDef (const char* Def);
/* Print an error about an invalid symbol definition and die */ /* Print an error about an invalid definition and die */
const char* GetArg (int* ArgNum, unsigned Len); const char* GetArg (int* ArgNum, unsigned Len);
/* Get an argument for a short option. The argument may be appended to the /* Get an argument for a short option. The argument may be appended to the