blob: 2e65b96fbda00029d6a6ec9eea6edd973712ed3f (
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
|
/* $OpenBSD: tc-vax.h,v 1.3 1998/02/15 18:49:47 niklas Exp $ */
/*
* This file is tc-vax.h.
*/
#define TC_VAX 1
#define AOUT_MACHTYPE 140
#define LOCAL_LABELS_FB
#define NO_LISTING
/* use this to compare against gas-1.38 */
#ifdef OLD_GAS
#define REVERSE_SORT_RELOCS
#endif
#define tc_aout_pre_write_hook(x) {;} /* not used */
#define tc_crawl_symbol_chain(a) {;} /* not used */
#define tc_headers_hook(a) {;} /* not used */
/*
* Local Variables:
* comment-column: 0
* fill-column: 131
* End:
*/
/* end of tc-vax.h */
|