Removed useless command-line option.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2000-2010, Ullrich von Bassewitz */
|
||||
/* (C) 2000-2013, Ullrich von Bassewitz */
|
||||
/* Roemerstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
@@ -237,18 +237,6 @@ void PopSearchPath (SearchPath* P)
|
||||
|
||||
|
||||
|
||||
void ForgetSearchPath (SearchPath* P)
|
||||
/* Forget all search paths in the given list */
|
||||
{
|
||||
unsigned I;
|
||||
for (I = 0; I < CollCount (P); ++I) {
|
||||
xfree (CollAt (P, I));
|
||||
}
|
||||
CollDeleteAll (P);
|
||||
}
|
||||
|
||||
|
||||
|
||||
char* SearchFile (const SearchPath* P, const char* File)
|
||||
/* Search for a file in a list of directories. Return a pointer to a malloced
|
||||
* area that contains the complete path, if found, return 0 otherwise.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2000-2010, Ullrich von Bassewitz */
|
||||
/* (C) 2000-2013, Ullrich von Bassewitz */
|
||||
/* Roemerstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
@@ -94,9 +94,6 @@ int PushSearchPath (SearchPath* P, const char* NewPath);
|
||||
void PopSearchPath (SearchPath* P);
|
||||
/* Remove a search path from the head of an existing search path list */
|
||||
|
||||
void ForgetSearchPath (SearchPath* P);
|
||||
/* Forget all search paths in the given list */
|
||||
|
||||
char* SearchFile (const SearchPath* P, const char* File);
|
||||
/* Search for a file in a list of directories. Return a pointer to a malloced
|
||||
* area that contains the complete path, if found, return 0 otherwise.
|
||||
|
||||
Reference in New Issue
Block a user