Files
mercury/runtime/mercury_bootstrap.c
Tyson Dowd 7609c18a0a Remove code from mercury_bootstrap.c.
Estimated hours taken: 1

Remove code from mercury_bootstrap.c.

library/std_util.m:
        Add type_ctor_info for type_info/0.

runtime/mercury_bootstrap.c:
	Remove type_ctor_info for type_info/0 (and other supporting
	bootstrapping stuff).
1999-11-15 05:12:29 +00:00

24 lines
761 B
C

/*
** Copyright (C) 1998-1999 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.
*/
/*
** mercury_bootstrap.c -
** Defintions that may be used for bootstrapping purposes.
**
** Because the runtime is linked as a library, symbols can be
** safely defined here -- if there is a duplicate symbol
** generated by the compiler, it will not link this module into
** the executable. If the symbol is not generated by the compiler,
** it will link with the definition in this file.
**
** Most of the time this file will be empty.
** It should not be used for more than one bootstrapping problem
** at a time.
*/
#include "mercury_imp.h"