aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1991-11-15 21:07:41 +0000
committerPer Bothner <per@bothner.com>1991-11-15 21:07:41 +0000
commit1d2c557430e84357b2d1bc183f900fcd2b23a034 (patch)
tree60a0c5ed38b93925175fb4076a15ca5ac33d7f34 /include
parent2090ba8351f1fa7fec452b8096860346fa69b0f1 (diff)
downloadfsf-binutils-gdb-1d2c557430e84357b2d1bc183f900fcd2b23a034.zip
fsf-binutils-gdb-1d2c557430e84357b2d1bc183f900fcd2b23a034.tar.gz
fsf-binutils-gdb-1d2c557430e84357b2d1bc183f900fcd2b23a034.tar.bz2
Updated from ../bfd make headsers
Diffstat (limited to 'include')
-rw-r--r--include/bfd.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/bfd.h b/include/bfd.h
index 72cdae4..345e8e0 100644
--- a/include/bfd.h
+++ b/include/bfd.h
@@ -80,8 +80,6 @@ typedef HOST_64_BIT symvalue;
typedef HOST_64_BIT bfd_64_type;
#define fprintf_vma(s,x) \
fprintf(s,"%08x%08x", uint64_typeHIGH(x), uint64_typeLOW(x))
-#define printf_vma(x) \
- printf( "%08x%08x", uint64_typeHIGH(x), uint64_typeLOW(x))
#else
typedef struct {int a,b;} bfd_64_type;
typedef unsigned long rawdata_offset;
@@ -91,9 +89,9 @@ typedef unsigned long bfd_word;
typedef unsigned long bfd_size;
typedef unsigned long symvalue;
typedef unsigned long bfd_size_type;
-#define printf_vma(x) printf( "%08lx", x)
#define fprintf_vma(s,x) fprintf(s, "%08lx", x)
#endif
+#define printf_vma(x) fprintf_vma(stdout,x)
typedef unsigned int flagword; /* 32 bits of flags */
@@ -1614,7 +1612,7 @@ actual number of symbol pointers not including the NULL.
/*
bfd_set_symtab
-Provided a table of pointers to to symbols and a count, writes to the
+Provided a table of pointers to symbols and a count, writes to the
output BFD the symbols when closed.
*/