aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-w65.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-06-24 11:51:53 +0000
committerAlan Modra <amodra@gmail.com>2000-06-24 11:51:53 +0000
commitc0fecd35a1154237e6a8abb4283fbc5f2b4ceac3 (patch)
tree53317644fdf6c426f20d3b86defed38e9453d375 /gas/config/tc-w65.c
parente7b305a27f5f8cb15be907f29ca3fa99deea4c49 (diff)
downloadfsf-binutils-gdb-c0fecd35a1154237e6a8abb4283fbc5f2b4ceac3.zip
fsf-binutils-gdb-c0fecd35a1154237e6a8abb4283fbc5f2b4ceac3.tar.gz
fsf-binutils-gdb-c0fecd35a1154237e6a8abb4283fbc5f2b4ceac3.tar.bz2
Blow away DEFUN.
Diffstat (limited to 'gas/config/tc-w65.c')
-rw-r--r--gas/config/tc-w65.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gas/config/tc-w65.c b/gas/config/tc-w65.c
index e57eb0f..2c6d85a 100644
--- a/gas/config/tc-w65.c
+++ b/gas/config/tc-w65.c
@@ -1,5 +1,5 @@
/* tc-w65.c -- Assemble code for the W65816
- Copyright (C) 1995, 1998 Free Software Foundation.
+ Copyright (C) 1995, 1998, 2000 Free Software Foundation.
This file is part of GAS, the GNU Assembler.
@@ -785,22 +785,22 @@ md_assemble (str)
void
-DEFUN (tc_crawl_symbol_chain, (headers),
- object_headers * headers)
+tc_crawl_symbol_chain (headers)
+ object_headers *headers;
{
printf (_("call to tc_crawl_symbol_chain \n"));
}
symbolS *
-DEFUN (md_undefined_symbol, (name),
- char *name)
+md_undefined_symbol (name)
+ char *name;
{
return 0;
}
void
-DEFUN (tc_headers_hook, (headers),
- object_headers * headers)
+tc_headers_hook (headers)
+ object_headers *headers;
{
printf (_("call to tc_headers_hook \n"));
}
@@ -996,9 +996,9 @@ md_convert_frag (headers, seg, fragP)
valueT
-DEFUN (md_section_align, (seg, size),
- segT seg AND
- valueT size)
+md_section_align (seg, size)
+ segT seg;
+ valueT size;
{
return ((size + (1 << section_alignment[(int) seg]) - 1)
& (-1 << section_alignment[(int) seg]));