-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathcompstat.c
35 lines (31 loc) · 1018 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
28
29
30
31
32
33
34
35
/****************************************************************************
**
*W compstat.c GAP source Frank Celler
**
**
*Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
*Y Copyright (C) 2002 The GAP Group
*/
#include <src/system.h>
#include <src/compstat.h> /* statically linked modules */
// #define AVOID_PRECOMPILED
/****************************************************************************
**
*V CompInitFuncs . . . . . . . . . . list of compiled module init functions
**
** This a dummy list in case no module is statically linked.
*/
#ifndef AVOID_PRECOMPILED
extern StructInitInfo * Init__methsel1 ( void );
extern StructInitInfo * Init__type1 ( void );
extern StructInitInfo * Init__oper1( void );
#endif
InitInfoFunc CompInitFuncs [] = {
#ifndef AVOID_PRECOMPILED
Init__methsel1,
Init__type1,
Init__oper1,
#endif
0
};