v22.2b14/
v22.2b14/Win32/
v22.2b14/compat/
v22.2b14/testsuite/
v22.2b14/testsuite/clone/
v22.2b14/testsuite/command/
v22.2b14/testsuite/data/
v22.2b14/testsuite/etc/
v22.2b14/testsuite/include/
v22.2b14/testsuite/inherit/
v22.2b14/testsuite/inherit/master/
v22.2b14/testsuite/log/
v22.2b14/testsuite/single/
v22.2b14/testsuite/single/tests/compiler/
v22.2b14/testsuite/single/tests/efuns/
v22.2b14/testsuite/single/tests/operators/
v22.2b14/testsuite/u/
v22.2b14/tmp/
#ifndef BINARIES_H
#define BINARIES_H

/* lpc_object_t */
#include "object.h"

#include "compiler.h"

extern char driver_name[];

FILE *crdir_fopen PROT((char *));
void init_binaries PROT((int, char **));
#ifdef LPC_TO_C
#define load_binary(x, y) int_load_binary(x, y)
program_t *int_load_binary PROT((char *, lpc_object_t *));
#else
#define load_binary(x, y) int_load_binary(x)
program_t *int_load_binary PROT((char *));
#endif
void save_binary PROT((program_t *, mem_block_t *, mem_block_t *));

#endif