mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-02-02 23:10:55 +00:00
12 lines
176 B
C
12 lines
176 B
C
/*
|
|
* output.h
|
|
*/
|
|
#ifndef OUTPUT_H
|
|
#define OUTPUT_H
|
|
|
|
#include "assemble.h"
|
|
|
|
int output(const char *progname, struct aunit *aunit, const char *outfile);
|
|
|
|
#endif /* OUTPUT_H */
|