nasm/outlib.h
H. Peter Anvin 03c4f90afa output: add common file outlib.c for common functions; realsize()
Add a common file, outlib.c, for output formats.  Add the function
realsize() instead of open-coded variants in almost every backend.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2008-10-27 22:19:59 -07:00

10 lines
142 B
C

#ifndef NASM_OUTLIB_H
#define NSAM_OUTLIB_H
#include "nasm.h"
uint64_t realsize(enum out_type type, uint64_t size);
#endif /* LIBOUT_H */