diff options
author | John Gilmore <gnu@cygnus> | 1991-11-22 16:45:04 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-11-22 16:45:04 +0000 |
commit | 8c4a1ace3d0ad925f513b3c03530cfeaa466fab1 (patch) | |
tree | eafa82608abebde01c5091473aea615b56be2988 /bfd/libbfd-in.h | |
parent | 8013e17047ee5006dc9890579772c8d5eab186bf (diff) | |
download | gdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.zip gdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.tar.gz gdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.tar.bz2 |
ALIGN->BFD_ALIGN
Diffstat (limited to 'bfd/libbfd-in.h')
-rw-r--r-- | bfd/libbfd-in.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bfd/libbfd-in.h b/bfd/libbfd-in.h index 3114d05..c85be24 100644 --- a/bfd/libbfd-in.h +++ b/bfd/libbfd-in.h @@ -1,7 +1,6 @@ - /* libbfd.h -- Declarations used by bfd library *implementation*. (This include file is not for users of the library.) - Copyright (C) 1990-1991 Free Software Foundation, Inc. + Copyright 1990, 1991 Free Software Foundation, Inc. Written by Cygnus Support. This file is part of BFD, the Binary File Descriptor library. @@ -23,7 +22,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Align an address upward to a boundary, expressed as a number of bytes. E.g. align to an 8-byte boundary with argument of 8. */ -#define ALIGN(this, boundary) \ +#define BFD_ALIGN(this, boundary) \ ((( (this) + ((boundary) -1)) & (~((boundary)-1)))) /* If you want to read and write large blocks, you might want to do it @@ -195,6 +194,8 @@ extern bfd *bfd_last_cache; /*:cache.c*/ +/*:ctor.c*/ + /*:reloc.c*/ /*:cpu-h8300.c*/ |