changes.src: put \c{...} around macro directives
[nasm.git] / rdoff / segtab.h
blob1679d3f97767584079705150a55bb7159859eb3a
1 #ifndef RDOFF_SEGTAB_H
2 #define RDOFF_SEGTAB_H 1
4 #include <inttypes.h>
6 typedef void *segtab;
8 void init_seglocations(segtab * r);
9 void add_seglocation(segtab * r, int localseg, int destseg, int32_t offset);
10 int get_seglocation(segtab * r, int localseg, int *destseg, int32_t *offset);
11 void done_seglocations(segtab * r);
13 #endif