force all files to end in "/* end of filename"
[deliverable/binutils-gdb.git] / gas / listing.h
1
2 #ifndef NO_LISTING
3 #define LISTING_NEWLINE() if (listing) listing_newline(input_line_pointer);
4 #else
5 #define LISTING_NEWLINE()
6 #endif
7 void EXFUN(listing_title,(unsigned int depth));
8 void EXFUN(listing_list,());
9 void EXFUN(listing_flags,());
10 void EXFUN(listing_psize,());
11 void EXFUN(listing_eject,());
12 void EXFUN(listing_width,(unsigned int x));
13 void EXFUN(listing_source_line,(unsigned int));
14 void EXFUN(listing_source_file,(char *));
15
16 #define LISTING_LISTING 1
17 #define LISTING_SYMBOLS 2
18 #define LISTING_NOFORM 4
19 #define LISTING_HLL 8
20 #define LISTING_NODEBUG 16
21
22 #define LISTING_DEFAULT (LISTING_LISTING | LISTING_HLL | LISTING_SYMBOLS)
23
24 /* end of listing.h */
This page took 0.038178 seconds and 5 git commands to generate.