mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-12 20:34:19 +00:00
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).
24 lines
761 B
C
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"
|
|
|