88k stuff
[deliverable/binutils-gdb.git] / binutils / binutils.texinfo
CommitLineData
de5fd53b
RP
1\input texinfo
2@setfilename binutils.info
3@synindex ky cp
4@c
5@c This file documents the GNU binary utilities "ar", "ld", "objdump", "nm",
6@c "size", "strip", and "ranlib".
7@c
8@c Copyright (C) 1991 Free Software Foundation, Inc.
9@c
10@c This text may be freely distributed under the terms of the GNU
11@c General Public License.
12@c
13@c $Id$
15c1f44d 14@iftex
de5fd53b
RP
15@finalout
16@c @smallbook
15c1f44d 17@end iftex
de5fd53b
RP
18@c @cropmarks
19@setchapternewpage odd
20@settitle GNU Binary Utilities
21@titlepage
15c1f44d
RP
22@title The GNU Binary Utilities
23@subtitle Version 1.90
de5fd53b 24@sp 1
2f3c1742 25@subtitle October 1991
15c1f44d
RP
26@author Roland H. Pesch
27@author Cygnus Support
de5fd53b
RP
28@page
29
30@tex
31\def\$#1${{#1}} % Kluge: collect RCS revision info without $...$
32\xdef\manvers{\$Revision$} % For use in headers, footers too
33{\parskip=0pt \hfill Cygnus Support\par \hfill \manvers\par \hfill
34\TeX{}info \texinfoversion\par }
35@end tex
36
37@vskip 0pt plus 1filll
38Copyright @copyright{} 1991 Free Software Foundation, Inc.
39
40Permission is granted to make and distribute verbatim copies of
41this manual provided the copyright notice and this permission notice
42are preserved on all copies.
43
44Permission is granted to copy and distribute modified versions of this
45manual under the conditions for verbatim copying, provided also that
46the entire resulting derived work is distributed under the terms of a
47permission notice identical to this one.
48
49Permission is granted to copy and distribute translations of this manual
50into another language, under the above conditions for modified versions.
51@end titlepage
52
de5fd53b 53@node Top, ar, (dir), (dir)
2f3c1742
RP
54@chapter Introduction
55
56This brief manual contains preliminary documentation for the GNU binary
843b88ba 57utilities (collectively version 1.90): @samp{ar}, @samp{objdump},
2f3c1742 58@samp{nm}, @samp{size}, @samp{strip}, and @samp{ranlib}. @refill
de5fd53b 59
2f3c1742 60@ifinfo
de5fd53b
RP
61Copyright @copyright{} 1991 Free Software Foundation, Inc.
62
63Permission is granted to make and distribute verbatim copies of
64this manual provided the copyright notice and this permission notice
65are preserved on all copies.
66
67@ignore
68Permission is granted to process this file through TeX and print the
69results, provided the printed document carries a copying permission
70notice identical to this one except for the removal of this paragraph
71(this paragraph not being relevant to the printed manual).
72
73@end ignore
74
75Permission is granted to copy and distribute modified versions of this
76manual under the conditions for verbatim copying, provided also that
77the entire resulting derived work is distributed under the terms of a
78permission notice identical to this one.
79
80Permission is granted to copy and distribute translations of this manual
81into another language, under the above conditions for modified versions.
82@end ifinfo
83
84@menu
15c1f44d
RP
85* ar:: ar
86* ld:: ld
87* nm:: nm
88* objdump:: objdump
89* ranlib:: ranlib
90* size:: size
91* strip:: strip
de5fd53b
RP
92@end menu
93
94@node ar, ld, Top, Top
95@chapter ar
96
97@smallexample
2f3c1742 98 ar [-]@var{p}@var{mod} [ @var{membername} ] @var{archive} @var{files}@dots{}
de5fd53b
RP
99@end smallexample
100
101The GNU @code{ar} program creates, modifies, and extracts
102archives. An @dfn{archive} is a single file holding a collection of
103other files in a structure that makes it possible to retrieve
104the original individual files (called @dfn{members} of the archive).
105
106The original files' contents, mode (permissions), timestamp, owner, and
107group are preserved in the archive, and may be reconstituted on
108extraction.
109
050f05e7
RP
110GNU @code{ar} can maintain archives whose members have names of any
111length; however, depending on how @code{ar} is configured on your
112system, a limit on member-name length may be imposed (for compatibility
113with archive formats maintained with other tools). If it exists, the
114limit is often 15 characters (typical of formats related to a.out) or 16
115characters (typical of formats related to coff).
de5fd53b
RP
116
117@code{ar} is considered a binary utility because archives of this sort
118are most often used as @dfn{libraries} holding commonly needed
119subroutines.
120
121@code{ar} will create an index to the symbols defined in relocatable
c9629e6e 122object modules in the archive when you specify the modifier @samp{s}.
de5fd53b 123Once created, this index is updated in the archive whenever @code{ar}
8706a92c
RP
124makes a change to its contents (save for the @samp{q} update operation).
125An archive with such an index speeds up linking to the library, and
126allows routines in the library to call each other without regard to
127their placement in the archive.
128
de5fd53b 129
2f3c1742 130You may use @samp{nm -s} or @samp{nm +print-armap} to list this index
de5fd53b
RP
131table. If an archive lacks the table, another form of @code{ar} called
132@code{ranlib} can be used to add just the table.
133
134@code{ar} insists on at least two arguments to execute: one
135keyletter specifying the @emph{operation} (optionally accompanied by other
136keyletters specifying @emph{modifiers}), and the archive name to act on.
137
138Most operations can also accept further @var{files} arguments,
139specifying particular files to operate on.
140
c9629e6e
RP
141GNU @code{ar} allows you to mix the operation code @var{p} and modifier
142flags @var{mod} in any order, within the first command-line argument.
de5fd53b 143
2f3c1742 144If you wish, you may prefix the first command-line argument with a
de5fd53b
RP
145dash.
146
2f3c1742 147The @var{p} keyletter specifies what operation to execute; it may be
de5fd53b
RP
148any of the following, but you must specify only one of them:
149
150@table @code
151@item d
152@emph{Delete} modules from the archive. Specify the names of modules to
153be deleted as @var{files}; the archive is untouched if you
154specify no files to delete.
155
c9629e6e 156If you specify the @samp{v} modifier, @code{ar} will list each module
de5fd53b
RP
157as it is deleted.
158
159@item m
160Use this operation to @emph{move} members in an archive.
161
162The ordering of members in an archive can make a difference in how
163programs are linked using the library, if a symbol is defined in more
164than one member.
165
c9629e6e 166If no modifiers are used with @code{m}, any members you name in the
de5fd53b 167@var{files} arguments are moved to the @emph{end} of the archive;
c9629e6e 168you can use the @samp{a}, @samp{b}, or @samp{i} modifiers to move them to a
de5fd53b
RP
169specified place instead.
170
171@item p
172@emph{Print} the specified members of the archive, to the standard
c9629e6e 173output file. If the @samp{v} modifier is specified, show the member
de5fd53b
RP
174name before copying its contents to standard output.
175
050f05e7 176If you specify no @var{files}, all the files in the archive are printed.
de5fd53b
RP
177
178@item q
179@emph{Quick append}; add @var{files} to the end of @var{archive},
8706a92c 180without checking for replacement.
de5fd53b 181
c9629e6e 182The modifiers @samp{a}, @samp{b}, and @samp{i} do @emph{not} affect this
de5fd53b
RP
183operation; new members are always placed at the end of the archive.
184
c9629e6e 185The modifier @samp{v} makes @code{ar} list each file as it is appended.
de5fd53b 186
8706a92c
RP
187Since the point of this operation is speed, the archive's symbol table
188index is not updated, even if it already existed; you can use @samp{ar s} or
189@code{ranlib} explicitly to update the symbol table index.
de5fd53b
RP
190
191@item r
192Insert @var{files} into @var{archive} (with @emph{replacement}). This
193operation differs from @samp{q} in that any previously existing members
194are deleted if their names match those being added.
195
196If one of the files named in @var{files} doesn't exist, @code{ar}
197displays an error message, and leaves undisturbed any existing members
198of the archive matching that name.
199
200By default, new members are added at the end of the file; but you may
c9629e6e 201use one of the modifiers @samp{a}, @samp{b}, or @samp{i} to request
de5fd53b
RP
202placement relative to some existing member.
203
c9629e6e 204The modifier @samp{v} used with this operation elicits a line of
de5fd53b
RP
205output for each file inserted, along with one of the letters @samp{a} or
206@samp{r} to indicate whether the file was appended (no old member
207deleted) or replaced.
208
209@item t
210Display a @emph{table} listing the contents of @var{archive}, or those
211of the files listed in @var{files} that are present in the
212archive. Normally only the member name is shown; if you also want to
213see the modes (permissions), timestamp, owner, group, and size, you can
c9629e6e 214request that by also specifying the @samp{v} modifier.
de5fd53b
RP
215
216If you do not specify any @var{files}, all files in the archive
050f05e7 217are listed.
de5fd53b
RP
218
219If there is more than one file with the same name (say, @samp{fie}) in
220an archive (say @samp{b.a}), @samp{ar t b.a fie} will list only the
221first instance; to see them all, you must ask for a complete
222listing---in our example, @samp{ar t b.a}.
223@c WRS only; per Gumby, this is implementation-dependent, and in a more
224@c recent case in fact works the other way.
225
226@item x
2f3c1742 227@emph{Extract} members (named @var{files}) from the archive. You can
c9629e6e 228use the @samp{v} modifier with this operation, to request that
2f3c1742 229@code{ar} list each name as it extracts it.
de5fd53b
RP
230
231If you do not specify any @var{files}, all files in the archive
050f05e7 232are extracted.
de5fd53b
RP
233
234@end table
235
2f3c1742
RP
236A number of modifiers (@var{mod}) may immediately follow the @var{p}
237keyletter, to specify variations on an operation's behavior:
de5fd53b
RP
238
239@table @code
240@item a
241Add new files @emph{after} an existing member of the
242archive. If you use the modifier @code{a}, the name of an existing archive
243member must be present as the @var{membername} argument, before the
244@var{archive} specification.
245
246@item b
247Add new files @emph{before} an existing member of the
248archive. If you use the modifier @code{b}, the name of an existing archive
249member must be present as the @var{membername} argument, before the
250@var{archive} specification. (same as @samp{i}).
251
252@item c
253@emph{Create} the archive. The specified @var{archive} is always
254created if it didn't exist, when you request an update. But a warning is
255issued unless you specify in advance that you expect to create it, by
c9629e6e 256using this modifier.
de5fd53b
RP
257
258@item i
259Insert new files @emph{before} an existing member of the
260archive. If you use the modifier @code{i}, the name of an existing archive
261member must be present as the @var{membername} argument, before the
262@var{archive} specification. (same as @samp{b}).
263
264@item l
c9629e6e 265This modifier is accepted but not used.
050f05e7
RP
266@c whaffor ar l modifier??? presumably compat; with
267@c what???---pesch@@cygnus.com, 25jan91
de5fd53b
RP
268
269@item o
270Preserve the @emph{original} dates of members when extracting them. If
c9629e6e 271you do not specify this modifier, files extracted from the archive
de5fd53b
RP
272will be stamped with the time of extraction.
273
274@item s
275Write an object-file index into the archive, or update an existing one,
c9629e6e 276even if no other change is made to the archive. You may use this modifier
de5fd53b
RP
277flag either with any operation, or alone. Running @samp{ar s} on an
278archive is equivalent to running @samp{ranlib} on it.
279
280@item u
c9629e6e 281Normally, @code{ar r}@dots{} inserts all files
de5fd53b
RP
282listed into the archive. If you would like to insert @emph{only} those
283of the files you list that are newer than existing members of the same
c9629e6e
RP
284names, use this modifier. The @samp{u} modifier is allowed only for the
285operation @samp{r} (replace). In particular, the combination @samp{qu} is
286not allowed, since checking the timestamps would lose any speed
287advantage from the operation @samp{q}.
de5fd53b 288
de5fd53b 289@item v
c9629e6e 290This modifier requests the @emph{verbose} version of an operation. Many
de5fd53b 291operations display additional information, such as filenames processed,
c9629e6e 292when the modifier @samp{v} is appended.
de5fd53b
RP
293
294@end table
295
296@node ld, nm, ar, Top
297@chapter ld
298The GNU linker @code{ld} is now described in a separate manual.
299@xref{Top, , Overview, , GLD: the GNU linker}.
300
301@node nm, objdump, ld, Top
302@chapter nm
303
304@smallexample
305 nm [ -a | +debug-syms ] [ -g | +extern-only ]
2f3c1742
RP
306 [ -s | +print-armap ] [ -o | +print-file-name ]
307 [ -n | +numeric-sort ] [ -p | +no-sort ]
308 [ -r | +reverse-sort ] [ -u | +undefined-only ]
c9629e6e 309 [ +target @var{bfdname} ]
de5fd53b
RP
310 [ @var{objfiles}@dots{} ]
311@end smallexample
312
313GNU @code{nm} will list the symbols from object files @var{objfiles}.
de5fd53b
RP
314
315The long and short forms of options, shown here as alternatives, are
316equivalent.
317
318@table @code
319@item @var{objfiles}@dots{}
320Object files whose symbols are to be listed. If no object files are
321listed as arguments, @code{nm} assumes @samp{a.out}.
322
2f3c1742
RP
323@item +debug-syms
324@itemx -a
de5fd53b
RP
325Display debugger-only symbols; normally these are not listed.
326
2f3c1742
RP
327@item +extern-only
328@itemx -g
de5fd53b
RP
329Display only external symbols.
330
2f3c1742
RP
331@item +no-sort
332@itemx -p
333Don't bother to sort the symbols in any order; just print them in the
334order encountered.
335
336@item +numeric-sort
337@itemx -n
de5fd53b
RP
338Sort symbols numerically by their addresses, not alphabetically by their
339names.
340
2f3c1742
RP
341@item +print-armap
342@itemx -s
343When listing symbols from archives, list the index: a mapping (stored in
050f05e7 344the archive by @code{ar} or @code{ranlib}) of what modules contain
2f3c1742
RP
345definitions for what names.
346
347@item +print-file-name
348@itemx -o
de5fd53b
RP
349Precede each symbol by the name of the input file where it was found,
350rather than identifying the input file once only before all of its
351symbols.
352
2f3c1742
RP
353@item +reverse-sort
354@itemx -r
de5fd53b
RP
355Reverse the sense of the sort (whether numeric or alphabetic); let the
356last come first.
357
2f3c1742
RP
358@item +target @var{bfdname}
359@c @item +target
360Specify an object code format other than your system's default format.
361@xref{objdump}, for information on listing available formats.
362@c FIXME what *does* +target/no arg do?
363
de5fd53b 364
2f3c1742
RP
365@item +undefined-only
366@itemx -u
de5fd53b
RP
367Display only undefined symbols (those external to each object file).
368
369@end table
370
371@node objdump, ranlib, nm, Top
372@chapter objdump
373
374@smallexample
f036c5d5
RP
375 objdump [ -a ] [ -b @var{bfdname} ] [ -d ] [ -f ]
376 [ -h | +header ] [ -i ] [ -j @var{section} ] [ -l ]
377 [ -m @var{machine} ] [ -r | +reloc ] [ -s ]
378 [ -t | +syms ] [ -x ]
379 @var{objfiles}@dots{}
de5fd53b
RP
380@end smallexample
381
382@code{objdump} displays information about one or more object files.
383The options control what particular information to display. This
384information is mostly useful to programmers who are working on the
385compilation tools, as opposed to programmers who just want their
386program to compile and work.
387
388The long and short forms of options, shown here as alternatives, are
389equivalent.
390
391@table @code
392@item @var{objfiles}@dots{}
393The object files to be examined.
394
2f3c1742
RP
395@item -a
396@c print_arelt_descr
397If any files from @var{objfiles} are archives, display the archive
398header information (in a format similar to @samp{ls -l}).
399
400@c suggest longname +target or +format or +bfd
401@item -b @var{bfdname}
402You can specify a particular object-code format for your object files as
403@var{bfdname}. This may not be necessary; @var{objdump} can
404automatically recognize many formats. For example,
405@example
406objdump -b oasys -m vax -h fu.o
407@end example
408@noindent
409Displays summary information from the section headers (@samp{-h}) of
c9629e6e 410@file{fu.o}, which is explicitly identified (@samp{-m}) as a Vax object
2f3c1742 411file in the format produced by Oasys compilers. You can list the
c9629e6e 412formats available with the @samp{-i} option.
2f3c1742
RP
413
414@item -d
415Disassemble. Display the assembler mnemonics for the machine
416instructions from @var{objfiles}.
417
418@item -f
419File header. Display summary information from the overall header of
420each file in @var{objfiles}.
421
422@item +header
423@itemx -h
424Header. Display summary information from the section headers of the
425object file.
426
427@item -i
428Display a list showing all architectures and object formats available
429for specification with @code{-b} or @code{-m}.
430
431@c suggest longname +section
432@item -j @var{name}
433Display information only for section @var{name}
434
435@c suggest longname +label or +linespec
436@item -l
437Label the display (using debugging information) with the source filename
438and line numbers corresponding to the object code shown.
439
440@c suggest longname +architecture
441@item -m @var{machine}
442Specify the object files @var{objfiles} are for architecture
443@var{machine}. You can list available architectures using the @samp{-i}
444option.
445
446@item +reloc
447@itemx -r
de5fd53b
RP
448Relocation. Print the relocation entries of the file.
449
2f3c1742
RP
450@item -s
451Display the full contents of any sections requested.
452
453@item +syms
454@itemx -t
de5fd53b
RP
455Symbol Table. Print the symbol table entries of the file.
456This is similar to the information provided by the @samp{nm} program.
457
2f3c1742
RP
458@item -x
459Display all available header information, including the symbol table and
c9629e6e
RP
460relocation entries. Using @samp{-x} is equivalent to specifying all of
461@samp{-f -a -h -r -t}.
2f3c1742 462
de5fd53b
RP
463@end table
464
465@node ranlib, size, objdump, Top
466@chapter ranlib
467
468@smallexample
2f3c1742 469 ranlib @var{archive}
de5fd53b
RP
470@end smallexample
471
c9629e6e 472@code{ranlib} generates an index to the contents of an archive, and
de5fd53b
RP
473stores it in the archive. The index lists each symbol defined by a
474member of an archive that is a relocatable object file.
475
c9629e6e 476You may use @code{nm -s} or @code{nm +print-armap} to list this index.
de5fd53b
RP
477
478An archive with such an index speeds up linking to the library, and
479allows routines in the library to call each other without regard to
480their placement in the archive.
481
c9629e6e
RP
482The GNU @code{ranlib} program is another form of GNU @code{ar}; running
483@code{ranlib} is completely equivalent to executing @samp{ar -s}.
484@xref{ar}.
485
de5fd53b 486
2f3c1742
RP
487@ignore
488@c FIXME vintage ranlib had options [ -t | +touch ] [ -v | +verbose ]
489@c which are gone here. Good or evil?
490
de5fd53b
RP
491@code{ranlib}'s options make it report on what it's doing and fake an
492update of a particular archive's index.
493
494Any command-line options must precede the archive name.
495
496The long and short forms of options, shown here as alternatives, are
497equivalent.
498
499@table @code
500
501@item -t | +touch
502You can use the ``touch'' option to fake an update of the index
503table in archives; @code{ranlib} will first set the current date for the
504index object module in the archive (to make it appear to have changed).
505
506@item -v | +verbose
507Use this option if you'd like informational messages about what
508@code{ranlib} is up to, while it loops through the specified archives.
509
510@end table
2f3c1742 511@end ignore
de5fd53b
RP
512
513@node size, strip, ranlib, Top
514@chapter size
515
516@smallexample
c9629e6e
RP
517 size [ -A | -B | +format @var{compatibility} ]
518 [ +help ] [ -d | -o | -x | +radix @var{number} ]
519 [ +target @var{bfdname} [ -V | +version ]
2f3c1742 520 @var{objfiles}@dots{}
de5fd53b
RP
521@end smallexample
522
2f3c1742
RP
523The GNU @code{size} utility lists the section sizes---and the total
524size---for each of the object files @var{objfiles} in its argument list.
525By default, one line of output is generated for each object file or each
526module in an archive.
de5fd53b 527
2f3c1742
RP
528The command line options have the following meanings:
529@table @code
c9629e6e
RP
530@item @var{objfiles}@dots{}
531The object files to be examined.
2f3c1742
RP
532
533@item +format @var{compatibility}
534@itemx -A
535@itemx -B
536Using one of these options, you can choose whether the output from GNU
537@code{size} resembles output from System V @code{size} (using @samp{-A},
538or @samp{+format sysv}, or Berkeley @code{size} (using @samp{-B}, or
539@samp{+format berkeley}. The default is the one-line format similar to
540Berkeley's.
541@c Bonus for doc-source readers: you can also say +format=strange (or
542@c anything else that starts with 's') for sysv, and +format=boring (or
543@c anything else that starts with 'b') for Berkeley.
544
545Here is an example of the Berkeley (default) format of output from
546@code{size}:
de5fd53b 547@smallexample
2f3c1742 548 eg$ size +format Berkeley ranlib size
15c1f44d
RP
549text data bss dec hex filename
550294880 81920 11592 388392 5ed28 ranlib
551294880 81920 11888 388688 5ee50 size
2f3c1742
RP
552@end smallexample
553
554@noindent
555This is the same data, but displayed closer to System V conventions:
de5fd53b 556
2f3c1742 557@smallexample
2f3c1742
RP
558 eg$ size +format SysV ranlib size
559ranlib :
15c1f44d
RP
560section size addr
561.text 294880 8192
562.data 81920 303104
563.bss 11592 385024
564Total 388392
2f3c1742
RP
565
566
567size :
15c1f44d
RP
568section size addr
569.text 294880 8192
570.data 81920 303104
571.bss 11888 385024
572Total 388688
f036c5d5 573@end smallexample
2f3c1742 574
c9629e6e
RP
575@item +help
576Show a summary of acceptable arguments and options.
577
578@item +radix @var{number}
579@itemx -d
580@itemx -o
581@itemx -x
582Using one of these options, you can control whether the size of each
583section is given in decimal (@samp{-d}, or @samp{+radix 10}); octal
584(@samp{-o}, or @samp{+radix 8}); or hexadecimal (@samp{-x}, or
585@samp{+radix 16}). In @samp{+radix @var{number}}, only the three
586values (8, 10, 16) are supported. The total size is always given in two
587radices; decimal and hexadecimal for @samp{-d} or @samp{-x} output, or
588octal and hexadecimal if you're using @samp{-o}.
589
2f3c1742
RP
590@item +target @var{bfdname}
591You can specify a particular object-code format for @var{objfiles} as
592@var{bfdname}. This may not be necessary; @var{size} can
593automatically recognize many formats. @xref{objdump}, for information
594on listing available formats.
595
596@item +version
597@itemx -V
598Display version number information on @code{size} itself.
599
600@end table
601
de5fd53b
RP
602
603@node strip, , size, Top
604@chapter strip
605
606@smallexample
2f3c1742 607 strip [ -s | +strip-all ] [ -g | -S | +strip-debug ]
de5fd53b 608 [ -x | +discard-all ] [ -X | +discard-locals ]
2f3c1742 609 [ -T @var{bfdname} ]
de5fd53b
RP
610 @var{objfiles}@dots{}
611@end smallexample
612
613GNU @code{strip} will discard all symbols from object files
614@var{objfiles}, if no options are specified; or only certain symbols,
615depending on its command-line options.
616
617@code{strip} will not execute unless at least one object file is listed.
618
c9629e6e 619@quotation
de5fd53b
RP
620@emph{WARNING:} @code{strip} modifies the files named in its argument,
621rather than writing modified copies under different names.
c9629e6e 622@end quotation
de5fd53b
RP
623
624The long and short forms of options, shown here as alternatives, are
625equivalent.
626
627@table @code
2f3c1742
RP
628@item +strip-all
629@itemx -s
de5fd53b
RP
630This is the default case: strip all symbol entries from @var{objfiles}.
631
2f3c1742
RP
632@item +strip-debug
633@itemx -g
634@itemx -S
de5fd53b
RP
635Discard only debugging symbol information from @var{objfiles}.
636
2f3c1742
RP
637@item +discard-all
638@itemx -x
de5fd53b
RP
639Discard all symbols local to each file in @var{objfiles}.
640@emph{WARNING:} Note that @code{+discard-all} discards only @emph{local}
641symbols, in spite of its name.
642
2f3c1742
RP
643@item +discard-locals
644@itemx -X
de5fd53b
RP
645Discard local symbols starting with @samp{L} from each file in
646@var{objfiles}. (Some compilers produce internally-used symbols that
647begin with @samp{L}.)
de5fd53b 648
2f3c1742
RP
649@item -T @var{bfdname}
650You can specify a particular object-code format @var{bfdname} for
651@var{objfiles}. This may not be necessary; @var{strip} can automatically
652recognize many formats. @xref{objdump}, for information on listing
653available formats.
654@end table
de5fd53b
RP
655
656@contents
657@bye
658
659
This page took 0.103843 seconds and 4 git commands to generate.