/ * codegen_header: Write out header stuff before class info. */
| 32 | * codegen_header: Write out header stuff before class info. |
| 33 | */ |
| 34 | void codegen_header(void) |
| 35 | { |
| 36 | int i; |
| 37 | for (i=0; i < 4; i++) |
| 38 | OutputByte(outfile, bof_magic[i]); |
| 39 | |
| 40 | OutputInt(outfile, BOF_VERSION); |
| 41 | } |
| 42 | /************************************************************************/ |
| 43 | /* |
| 44 | * codegen_classes: Generate code for all classes. |
no test coverage detected