fix Swig_search_path declaration

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10927 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2008-11-11 22:28:18 +00:00
commit 1fe9876d47
3 changed files with 3 additions and 3 deletions

View file

@ -203,7 +203,7 @@ static String *yyrename = 0;
static String *resolve_node_scope(String *cname);
Hash *Swig_cparse_features() {
Hash *Swig_cparse_features(void) {
static Hash *features_hash = 0;
if (!features_hash) features_hash = NewHash();
return features_hash;

View file

@ -93,7 +93,7 @@ String *Swig_last_file(void) {
}
/* -----------------------------------------------------------------------------
* Swig_search_path()
* Swig_search_path_any()
*
* Returns a list of the current search paths.
* ----------------------------------------------------------------------------- */

View file

@ -13,7 +13,7 @@ extern List *Swig_add_directory(const String_or_char *dirname);
extern void Swig_push_directory(const String_or_char *dirname);
extern void Swig_pop_directory(void);
extern String *Swig_last_file(void);
extern List *Swig_search_path(int syspathvoid);
extern List *Swig_search_path(void);
extern FILE *Swig_open(const String_or_char *name);
extern String *Swig_read_file(FILE *f);
extern String *Swig_include(const String_or_char *name);