diff options
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 6e1742e..aa8839b 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -1457,6 +1457,8 @@ char *ctime (); static struct bb *bb_head; +static int num_digits (long value, int base) __attribute__ ((const)); + /* Return the number of digits needed to print a value */ /* __inline__ */ static int num_digits (long value, int base) { @@ -3975,6 +3977,8 @@ label: #define MESSAGE "pure virtual method called\n" +extern void __terminate (void) __attribute__ ((__noreturn__)); + void __pure_virtual () { |