diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-05-19 13:51:37 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-05-19 13:51:37 +0000 |
commit | fbdebf465713844d23625ae09e0ae4995418328b (patch) | |
tree | 7af6455b1a462e3cba7eb1710604a7d2ea94be37 /gdb/defs.h | |
parent | 5fd62852f643d6fa71d7a0225237c7874868b695 (diff) | |
download | gdb-fbdebf465713844d23625ae09e0ae4995418328b.zip gdb-fbdebf465713844d23625ae09e0ae4995418328b.tar.gz gdb-fbdebf465713844d23625ae09e0ae4995418328b.tar.bz2 |
gdb/
Remove the PROT parameter from openp.
* source.c (openp): Remove the parameter PROT. Assertion check MODE.
defs.h (openp): Update the prototype.
Update all the openp callers.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -619,7 +619,7 @@ extern void print_address (CORE_ADDR, struct ui_file *); #define OPF_TRY_CWD_FIRST 0x01 #define OPF_SEARCH_IN_PATH 0x02 -extern int openp (const char *, int, const char *, int, int, char **); +extern int openp (const char *, int, const char *, int, char **); extern int source_full_path_of (const char *, char **); |