blob: f4bd4236245fcb46999e2f666c56cbb89b0c4971 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
@c -- Macro definitions -------------------------------------------------------
@c
@c Since only letters can be used, we use capitalization to distinguish
@c different words.
@c ----------------------------------------------------------------------------
@macro CollectApp{}
@command{gprofng collect app}
@end macro
@macro DisplayHTML{}
@command{gprofng display html}
@end macro
@macro DisplayText{}
@command{gprofng display text}
@end macro
@macro DisplaySRC{}
@command{gprofng display src}
@end macro
@macro Archive{}
@command{gprofng archive}
@end macro
@macro Driver{}
@command{gprofng}
@end macro
@macro ProductName{}
gprofng
@end macro
@macro ToolName{}
@command{gprofng}
@end macro
@macro IndexSubentry{label, string}
@c -- @cindex \label\ @subentry \string\
@cindex \label\, \string\
@end macro
@macro vspace {lines}
@sp \lines\
@end macro
@c -- For some reason ending this macro with @noindent does not work out well.
@macro OptionHeader {lines, option, description}
@sp \lines\
@noindent
@code{\option\} @ @emph{\description\}
@c -- @sp 1
@end macro
@macro gcctabopt{body}
@code{\body\}
@end macro
@macro ManPageStart{headername}
@ifclear man
@sp 1
@noindent @b{\headername\}
@indentedblock
@end ifclear
@end macro
@macro ManPageEnd{}
@ifclear man
@end indentedblock
@end ifclear
@end macro
|