aboutsummaryrefslogtreecommitdiff
path: root/ic-reals-6.3/base/garbage.c
blob: b081d6a4447e5dd1a5841a02aa74fd28d0766b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (C) 2000, Imperial College
 *
 * This file is part of the Imperial College Exact Real Arithmetic Library.
 * See the copyright notice included in the distribution for conditions
 * of use.
 */

#include <stdio.h>
#include "real.h"
#include <gmp-impl.h>
#include <longlong.h>
#include "real-impl.h"

void evacuateCls(Cls *);
void evacuateDigsX(DigsX *);
void evacuateVec(Vec *);
void evacuateMatX(MatX *);
void evacuateTenXY(TenXY *);

void
evacuateCls(Cls *vec)
{
}

void
evacuateDigsX(DigsX *digsX)
{
}

void
evacuateVec(Vec *vec)
{
}

void
evacuateMatX(MatX *matX)
{
}

void
evacuateTenXY(TenXY *tenXY)
{
}