diff options
author | Alan Modra <amodra@gmail.com> | 2000-05-08 10:24:06 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-05-08 10:24:06 +0000 |
commit | 8fce3f5ef7890ac84d05b842eed41b7e63603bd2 (patch) | |
tree | b98c70d59ecc7b6b9c5ece5a730e7bf782fbef14 /gas/as.h | |
parent | 575bc3d64a0b0abd7d7006c53316610624e8ca84 (diff) | |
download | gdb-8fce3f5ef7890ac84d05b842eed41b7e63603bd2.zip gdb-8fce3f5ef7890ac84d05b842eed41b7e63603bd2.tar.gz gdb-8fce3f5ef7890ac84d05b842eed41b7e63603bd2.tar.bz2 |
Michael Sokolov's 68000 patches + assorted compiler warning fixes.
Diffstat (limited to 'gas/as.h')
-rw-r--r-- | gas/as.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -138,14 +138,14 @@ extern void *alloca (); /* Now GNU header files... */ -#include <ansidecl.h> +#include "ansidecl.h" #ifdef BFD_ASSEMBLER -#include <bfd.h> +#include "bfd.h" #endif -#include <libiberty.h> +#include "libiberty.h" /* Define the standard progress macros. */ -#include <progress.h> +#include "progress.h" /* This doesn't get taken care of anywhere. */ #ifndef __MWERKS__ /* Metrowerks C chokes on the "defined (inline)" */ @@ -543,14 +543,14 @@ typedef struct _pseudo_type pseudo_typeS; #endif /* ! USE_STDARG */ PRINTF_LIKE (as_bad); -PRINTF_LIKE (as_fatal); +PRINTF_LIKE (as_fatal) ATTRIBUTE_NORETURN; PRINTF_LIKE (as_tsktsk); PRINTF_LIKE (as_warn); PRINTF_WHERE_LIKE (as_bad_where); PRINTF_WHERE_LIKE (as_warn_where); void as_assert PARAMS ((const char *, int, const char *)); -void as_abort PARAMS ((const char *, int, const char *)); +void as_abort PARAMS ((const char *, int, const char *)) ATTRIBUTE_NORETURN; void fprint_value PARAMS ((FILE *file, addressT value)); void sprint_value PARAMS ((char *buf, addressT value)); |