mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
Type change
git-svn-id: svn://svn.cc65.org/cc65/trunk@650 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
45cf0c2dd9
commit
080500d0a0
@ -170,7 +170,7 @@ static void ExpandFile (CmdLine* L, const char* Name)
|
||||
|
||||
|
||||
|
||||
void InitCmdLine (unsigned* aArgCount, char** aArgVec[], const char* aProgName)
|
||||
void InitCmdLine (int* aArgCount, char** aArgVec[], const char* aProgName)
|
||||
/* Initialize command line parsing. aArgVec is the argument array terminated by
|
||||
* a NULL pointer (as usual), ArgCount is the number of valid arguments in the
|
||||
* array. Both arguments are remembered in static storage.
|
||||
@ -180,7 +180,7 @@ void InitCmdLine (unsigned* aArgCount, char** aArgVec[], const char* aProgName)
|
||||
unsigned I;
|
||||
|
||||
/* Get the program name from argv[0] but strip a path */
|
||||
if (*(aArgVec)[0] == 0) {
|
||||
if (*(aArgVec)[0] == 0) {
|
||||
/* Use the default name given */
|
||||
ProgName = aProgName;
|
||||
} else {
|
||||
|
@ -71,7 +71,7 @@ struct LongOpt {
|
||||
|
||||
|
||||
|
||||
void InitCmdLine (unsigned* aArgCount, char** aArgVec[], const char* aProgName);
|
||||
void InitCmdLine (int* aArgCount, char** aArgVec[], const char* aProgName);
|
||||
/* Initialize command line parsing. aArgVec is the argument array terminated by
|
||||
* a NULL pointer (as usual), ArgCount is the number of valid arguments in the
|
||||
* array. Both arguments are remembered in static storage.
|
||||
|
Loading…
x
Reference in New Issue
Block a user