Pristine Ack-5.5
[Ack-5.5.git] / util / ceg / ce_back / as_back / dbsym.c
1 #include "header.h"
2
3 #ifndef OWN_SYMB
4 B_symbstr(s, len, type, add, val, added)
5 char *s, *val;
6 arith added;
7 {
8         if (! s) s = "";
9         fprint(codefile, ".symb \"%s\", %s+%ld, 0x%x, %d\n", s, val, (long) added, type, add);
10 }
11
12 B_symbcst(s, len, type, add, val)
13 char *s;
14 arith val;
15 {
16         if (! s) s = "";
17         fprint(codefile, ".symb \"%s\", %ld, 0x%x, %d\n", s, val, type, add);
18 }
19
20 B_symd(s, len, type, add)
21 char *s;
22 {
23         if (! s) s = "";
24         fprint(codefile, ".symd \"%s\", 0x%x, %d\n", s, type, add);
25 }
26 #endif