fluffos-1.22/
fluffos-1.22/Win32/
fluffos-1.22/compat/
fluffos-1.22/testsuite/
fluffos-1.22/testsuite/clone/
fluffos-1.22/testsuite/command/
fluffos-1.22/testsuite/data/
fluffos-1.22/testsuite/etc/
fluffos-1.22/testsuite/include/
fluffos-1.22/testsuite/inherit/
fluffos-1.22/testsuite/inherit/master/
fluffos-1.22/testsuite/log/
fluffos-1.22/testsuite/single/
fluffos-1.22/testsuite/single/tests/compiler/
fluffos-1.22/testsuite/single/tests/efuns/
fluffos-1.22/testsuite/single/tests/operators/
fluffos-1.22/testsuite/u/
fluffos-1.22/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