aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog6
-rw-r--r--include/util.h3
2 files changed, 8 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index cebe4c1ac..eabc078d5 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,9 @@
+2002-10-29 Stefan Bellon <[email protected]>
+
+ * util.h: Added parameter argument to make_basename() needed for
+ filetype support.
+ [__riscos__]: Added prototype.
+
2002-10-28 Stefan Bellon <[email protected]>
* util.h [__riscos__]: Added prototypes for new filetype support.
diff --git a/include/util.h b/include/util.h
index 4ac2b1537..de56cbeae 100644
--- a/include/util.h
+++ b/include/util.h
@@ -152,7 +152,7 @@ int release_dotlock( DOTLOCK h );
void remove_lockfiles (void);
/*-- fileutil.c --*/
-char * make_basename(const char *filepath);
+char * make_basename(const char *filepath, const char *inputpath);
char * make_dirname(const char *filepath);
char *make_filename( const char *first_part, ... );
int compare_filenames( const char *a, const char *b );
@@ -283,6 +283,7 @@ int fdopenfile(const char *filename, const int allow_write);
void close_fds(void);
int renamefile(const char *old, const char *new);
char *gstrans(const char *old);
+char *riscos_make_basename(const char *filepath, const char *inputpath);
void not_implemented(const char *feature);
#ifdef DEBUG
void dump_fdlist(void);