diff options
Diffstat (limited to 'gdb/utils.h')
-rw-r--r-- | gdb/utils.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/utils.h b/gdb/utils.h index d8afa79..b8e1aff 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -21,8 +21,6 @@ #ifndef UTILS_H #define UTILS_H -#include <stdbool.h> - #include "exceptions.h" extern void initialize_utils (void); @@ -304,7 +302,7 @@ extern pid_t wait_to_die_with_timeout (pid_t pid, int *status, int timeout); #endif extern int producer_is_gcc_ge_4 (const char *producer); -extern bool producer_is_gcc (const char *producer, int *major, int *minor); +extern int producer_is_gcc (const char *producer, int *major, int *minor); extern int myread (int, char *, int); |