Module Name: src Committed By: christos Date: Wed May 29 01:41:01 UTC 2019
Modified Files: src/external/gpl3/gdb/dist/gdb/common: pathstuff.h Log Message: Add a declaration for canonicalize_file_name(), it really does not belong here, but it is the most convenient (since it is only used in pathstuff.c) To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 \ src/external/gpl3/gdb/dist/gdb/common/pathstuff.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/gpl3/gdb/dist/gdb/common/pathstuff.h diff -u src/external/gpl3/gdb/dist/gdb/common/pathstuff.h:1.1.1.1 src/external/gpl3/gdb/dist/gdb/common/pathstuff.h:1.2 --- src/external/gpl3/gdb/dist/gdb/common/pathstuff.h:1.1.1.1 Sun May 26 17:00:08 2019 +++ src/external/gpl3/gdb/dist/gdb/common/pathstuff.h Tue May 28 21:41:01 2019 @@ -92,4 +92,6 @@ extern const char *get_shell (); extern gdb::char_vector make_temp_filename (const std::string &f); +extern "C" char *canonicalize_file_name (const char *path); + #endif /* COMMON_PATHSTUFF_H */