mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-19 07:45:09 +00:00
18 lines
440 B
C
18 lines
440 B
C
/*
|
|
** Copyright (C) 1997 The University of Melbourne.
|
|
** This file may only be copied under the terms of the GNU Library General
|
|
** Public License - see the file COPYING.LIB in the Mercury distribution.
|
|
**
|
|
** $Id: mbi.h,v 1.7 1997-07-27 14:59:24 fjh Exp $
|
|
*/
|
|
|
|
#ifndef MB_MBI_H
|
|
#define MB_MBI_H
|
|
|
|
/*
|
|
** BC_mbi_main() is the entry point for the Mercury bytecode interpreter.
|
|
*/
|
|
int BC_mbi_main(int argc, char **argv);
|
|
|
|
#endif /* ! MB_MBI_H */
|