ack/mach/vax4/ce/end_back.c
1988-09-15 09:49:22 +00:00

23 lines
308 B
C

#include <out.h>
#include "mach.h"
#include "data.h"
#include "back.h"
#include "header.h"
end_back()
{
sync();
do_local_relocation();
output();
}
sync()
{
while ( ( text - text_area) % EM_WSIZE != 0 )
text1( '\0');
while ( ( data - data_area) % EM_WSIZE != 0 )
con1( '\0');
}