1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Fixed another signedness problem

git-svn-id: svn://svn.cc65.org/cc65/trunk@1036 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-10-11 14:50:10 +00:00
parent 6a01347d6c
commit 3277ca7880
2 changed files with 3 additions and 3 deletions

View File

@ -261,7 +261,7 @@ void InvDef (const char* Def)
const char* GetArg (int* ArgNum, unsigned Len)
const char* GetArg (unsigned* ArgNum, unsigned Len)
/* Get an argument for a short option. The argument may be appended to the
* option itself or may be separate. Len is the length of the option string.
*/

View File

@ -82,11 +82,11 @@ void UnknownOption (const char* Opt) attribute ((noreturn));
void NeedArg (const char* Opt) attribute ((noreturn));
/* Print an error about a missing option argument and exit. */
void InvDef (const char* Def) attribute ((noreturn));
/* Print an error about an invalid definition and die */
const char* GetArg (int* ArgNum, unsigned Len);
const char* GetArg (unsigned* ArgNum, unsigned Len);
/* Get an argument for a short option. The argument may be appended to the
* option itself or may be separate. Len is the length of the option string.
*/