diff options
Diffstat (limited to 'gdb/common/common-utils.h')
-rw-r--r-- | gdb/common/common-utils.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/common/common-utils.h b/gdb/common/common-utils.h index 7bc6e90..a961514 100644 --- a/gdb/common/common-utils.h +++ b/gdb/common/common-utils.h @@ -146,11 +146,6 @@ in_inclusive_range (T value, T low, T high) return value >= low && value <= high; } -/* Return true if the file NAME exists and is a regular file. - If the result is false then *ERRNO_PTR is set to a useful value assuming - we're expecting a regular file. */ -extern bool is_regular_file (const char *name, int *errno_ptr); - /* Ensure that V is aligned to an N byte boundary (B's assumed to be a power of 2). Round up/down when necessary. Examples of correct use include: |