Branch data Line data Source code
1 : : /* do not edit automatically generated by mc from M2Size. */
2 : : /* M2Size.mod exports the standard function SIZE.
3 : :
4 : : Copyright (C) 2003-2025 Free Software Foundation, Inc.
5 : : Contributed by Gaius Mulley <gaius.mulley@southwales.ac.uk>.
6 : :
7 : : This file is part of GNU Modula-2.
8 : :
9 : : GNU Modula-2 is free software; you can redistribute it and/or modify
10 : : it under the terms of the GNU General Public License as published by
11 : : the Free Software Foundation; either version 3, or (at your option)
12 : : any later version.
13 : :
14 : : GNU Modula-2 is distributed in the hope that it will be useful, but
15 : : WITHOUT ANY WARRANTY; without even the implied warranty of
16 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 : : General Public License for more details.
18 : :
19 : : You should have received a copy of the GNU General Public License
20 : : along with GNU Modula-2; see the file COPYING3. If not see
21 : : <http://www.gnu.org/licenses/>. */
22 : :
23 : : #define INCLUDE_MEMORY
24 : : #include "config.h"
25 : : #include "system.h"
26 : : #include "gcc-consolidation.h"
27 : :
28 : : #include <stdbool.h>
29 : : # if !defined (PROC_D)
30 : : # define PROC_D
31 : : typedef void (*PROC_t) (void);
32 : : typedef struct { PROC_t proc; } PROC;
33 : : # endif
34 : :
35 : : #define _M2Size_C
36 : :
37 : : #include "GM2Size.h"
38 : : # include "GNameKey.h"
39 : : # include "GM2Base.h"
40 : : # include "GM2LexBuf.h"
41 : : # include "GSymbolTable.h"
42 : :
43 : :
44 : : /*
45 : : MakeSize - creates and declares the standard function SIZE.
46 : : */
47 : :
48 : : extern "C" void M2Size_MakeSize (void);
49 : :
50 : :
51 : : /*
52 : : MakeSize - creates and declares the standard function SIZE.
53 : : */
54 : :
55 : 30698 : extern "C" void M2Size_MakeSize (void)
56 : : {
57 : 30698 : if (M2Size_Size == SymbolTable_NulSym)
58 : : {
59 : : /* Function */
60 : 15392 : M2Size_Size = SymbolTable_MakeProcedure (M2LexBuf_BuiltinTokenNo, NameKey_MakeKey ((const char *) "SIZE", 4));
61 : : /* ZType */
62 : 15392 : SymbolTable_PutFunction (M2LexBuf_BuiltinTokenNo, M2Size_Size, SymbolTable_DefProcedure, M2Base_ZType);
63 : : }
64 : : else
65 : : {
66 : 15306 : SymbolTable_AddSymToModuleScope (SymbolTable_GetCurrentScope (), M2Size_Size);
67 : : }
68 : 30698 : }
69 : :
70 : 0 : extern "C" void _M2_M2Size_init (__attribute__((unused)) int argc, __attribute__((unused)) char *argv[], __attribute__((unused)) char *envp[])
71 : : {
72 : 0 : M2Size_Size = SymbolTable_NulSym;
73 : 0 : }
74 : :
75 : 0 : extern "C" void _M2_M2Size_fini (__attribute__((unused)) int argc, __attribute__((unused)) char *argv[], __attribute__((unused)) char *envp[])
76 : : {
77 : 0 : }
|