forked from gap-system/gap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompstat.c
27 lines (24 loc) · 788 Bytes
/
compstat.c
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
/****************************************************************************
**
** This file is part of GAP, a system for computational discrete algebra.
**
** Copyright of GAP belongs to its developers, whose names are too numerous
** to list here. Please refer to the COPYRIGHT file for details.
**
** SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "compstat.h"
#include "common.h"
/****************************************************************************
**
*V CompInitFuncs . . . . . . . . . . list of compiled module init functions
**
** This a dummy list in case no module is statically linked.
*/
extern StructInitInfo * Init__type1(void);
extern StructInitInfo * Init__oper1(void);
InitInfoFunc CompInitFuncs[] = {
Init__type1,
Init__oper1,
0
};