diff options
Diffstat (limited to 'gas/config/tc-m88k.c')
-rw-r--r-- | gas/config/tc-m88k.c | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/gas/config/tc-m88k.c b/gas/config/tc-m88k.c index ffc554f..abbc118 100644 --- a/gas/config/tc-m88k.c +++ b/gas/config/tc-m88k.c @@ -208,17 +208,28 @@ md_begin () ; } } + +CONST char *md_shortopts = ""; +struct option md_longopts[] = { + {NULL, no_argument, NULL, 0} +}; +size_t md_longopts_size = sizeof(md_longopts); int -md_parse_option (argP, cntP, vecP) - char **argP; - int *cntP; - char ***vecP; +md_parse_option (c, arg) + int c; + char *arg; { return 0; } void +md_show_usage (stream) + FILE *stream; +{ +} + +void md_assemble (op) char *op; { |