summaryrefslogtreecommitdiff
path: root/gas/sb.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2000-09-12 20:57:14 +0000
committerKazu Hirata <kazu@codesourcery.com>2000-09-12 20:57:14 +0000
commit507e248e449c8c8c32c0621d432a6bef87ba8d8c (patch)
treec66c3e308707ba0bc9a7170bfff339c454dce266 /gas/sb.h
parentf3e36a59b2c4c86bc73fc64d0084fdc2d9eba62b (diff)
downloadbinutils-redhat-507e248e449c8c8c32c0621d432a6bef87ba8d8c.tar.gz
2000-09-12 Kazu Hirata <kazu@hxi.com>
* as.h: Fix formatting. * asintl.h: Likewise. * bit_fix.h: Likewise. * dwarf2dbg.h: Likewise. * expr.h: Likewise. * flonum.h: Likewise. * frags.h: Likewise. * itbl-ops.h: Likewise. * macro.h: Likewise. * read.h: Likewise. * sb.h: Likewise. * struc-symbol.h: Likewise. * subsegs.h: Likewise. * symbols.h: Likewise. * tc.h: Likewise. * write.h: Likewise.
Diffstat (limited to 'gas/sb.h')
-rw-r--r--gas/sb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/sb.h b/gas/sb.h
index 7eaed258a3..e73e0de570 100644
--- a/gas/sb.h
+++ b/gas/sb.h
@@ -1,5 +1,5 @@
/* sb.h - header file for string buffer manipulation routines
- Copyright (C) 1994, 1995 Free Software Foundation, Inc.
+ Copyright (C) 1994, 1995, 2000 Free Software Foundation, Inc.
Written by Steve and Judy Chamberlain of Cygnus Support,
sac@cygnus.com
@@ -19,7 +19,7 @@
You should have received a copy of the GNU General Public License
along with GAS; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
- 02111-1307, USA. */
+ 02111-1307, USA. */
#ifndef SB_H
@@ -54,8 +54,8 @@
/* structure of an sb */
typedef struct sb
{
- char *ptr; /* points to the current block. */
- int len; /* how much is used. */
+ char *ptr; /* points to the current block. */
+ int len; /* how much is used. */
int pot; /* the maximum length is 1<<pot */
struct le *item;
}