mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-21 16:54:39 +00:00
15 lines
227 B
C
15 lines
227 B
C
|
|
/* prototypes of functions defined in coff.c */
|
|
|
|
#ifndef _COFF_H_INCLUDED
|
|
#define _COFF_H_INCLUDED
|
|
|
|
struct qditem {
|
|
uint_8 *next;
|
|
unsigned size;
|
|
};
|
|
|
|
extern void coff_init( struct module_info * );
|
|
|
|
#endif
|