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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
|
/* do not edit automatically generated by mc from mcComp. */
/* Copyright (C) 2015-2023 Free Software Foundation, Inc.
This file is part of GNU Modula-2.
GNU Modula-2 is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.
GNU Modula-2 is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with gm2; see the file COPYING. If not, write to the Free Software
Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
#include "config.h"
#include "system.h"
# if !defined (PROC_D)
# define PROC_D
typedef void (*PROC_t) (void);
typedef struct { PROC_t proc; } PROC;
# endif
# if !defined (TRUE)
# define TRUE (1==1)
# endif
# if !defined (FALSE)
# define FALSE (1==0)
# endif
# include "Gmcrts.h"
#if defined(__cplusplus)
# undef NULL
# define NULL 0
#endif
#define _mcComp_H
#define _mcComp_C
# include "GFIO.h"
# include "Glibc.h"
# include "Gdecl.h"
# include "GsymbolKey.h"
# include "GSYSTEM.h"
# include "GmcReserved.h"
# include "GmcSearch.h"
# include "GmcLexBuf.h"
# include "GmcFileName.h"
# include "GmcPreprocess.h"
# include "GFormatStrings.h"
# include "Gmcflex.h"
# include "Gmcp1.h"
# include "Gmcp2.h"
# include "Gmcp3.h"
# include "Gmcp4.h"
# include "Gmcp5.h"
# include "GmcComment.h"
# include "GmcError.h"
# include "GnameKey.h"
# include "GmcPrintf.h"
# include "GmcQuiet.h"
# include "GDynamicStrings.h"
# include "GmcOptions.h"
# define Debugging FALSE
typedef struct mcComp_parserFunction_p mcComp_parserFunction;
typedef struct mcComp_openFunction_p mcComp_openFunction;
typedef unsigned int (*mcComp_parserFunction_t) (void);
struct mcComp_parserFunction_p { mcComp_parserFunction_t proc; };
typedef unsigned int (*mcComp_openFunction_t) (decl_node, unsigned int);
struct mcComp_openFunction_p { mcComp_openFunction_t proc; };
static unsigned int currentPass;
/*
compile - check, s, is non NIL before calling doCompile.
*/
extern "C" void mcComp_compile (DynamicStrings_String s);
/*
getPassNo - return the pass no.
*/
extern "C" unsigned int mcComp_getPassNo (void);
/*
doCompile - translate file, s, using a 6 pass technique.
*/
static void doCompile (DynamicStrings_String s);
/*
examineCompilationUnit - opens the source file to obtain the module name and kind of module.
*/
static decl_node examineCompilationUnit (void);
/*
peepInto - peeps into source, s, and initializes a definition/implementation or
program module accordingly.
*/
static decl_node peepInto (DynamicStrings_String s);
/*
initParser - returns the node of the module found in the source file.
*/
static decl_node initParser (DynamicStrings_String s);
/*
p1 - wrap the pass procedure with the correct parameter values.
*/
static void p1 (decl_node n);
/*
p2 - wrap the pass procedure with the correct parameter values.
*/
static void p2 (decl_node n);
/*
p3 - wrap the pass procedure with the correct parameter values.
*/
static void p3 (decl_node n);
/*
p4 - wrap the pass procedure with the correct parameter values.
*/
static void p4 (decl_node n);
/*
p5 - wrap the pass procedure with the correct parameter values.
*/
static void p5 (decl_node n);
/*
doOpen -
*/
static unsigned int doOpen (decl_node n, DynamicStrings_String symName, DynamicStrings_String fileName, unsigned int exitOnFailure);
/*
openDef - try and open the definition module source file.
Returns true/false if successful/unsuccessful or
exitOnFailure.
*/
static unsigned int openDef (decl_node n, unsigned int exitOnFailure);
/*
openMod - try and open the implementation/program module source file.
Returns true/false if successful/unsuccessful or
exitOnFailure.
*/
static unsigned int openMod (decl_node n, unsigned int exitOnFailure);
/*
pass -
*/
static void pass (unsigned int no, decl_node n, mcComp_parserFunction f, decl_isNodeF isnode, mcComp_openFunction open);
/*
doPass -
*/
static void doPass (unsigned int parseDefs, unsigned int parseMain, unsigned int no, symbolKey_performOperation p, const char *desc_, unsigned int _desc_high);
/*
setToPassNo -
*/
static void setToPassNo (unsigned int n);
/*
init - initialise data structures for this module.
*/
static void init (void);
/*
doCompile - translate file, s, using a 6 pass technique.
*/
static void doCompile (DynamicStrings_String s)
{
decl_node n;
n = initParser (s);
doPass (TRUE, TRUE, 1, (symbolKey_performOperation) {(symbolKey_performOperation_t) p1}, (const char *) "lexical analysis, modules, root decls and C preprocessor", 56);
doPass (TRUE, TRUE, 2, (symbolKey_performOperation) {(symbolKey_performOperation_t) p2}, (const char *) "[all modules] type equivalence and enumeration types", 52);
doPass (TRUE, TRUE, 3, (symbolKey_performOperation) {(symbolKey_performOperation_t) p3}, (const char *) "[all modules] import lists, types, variables and procedure declarations", 71);
doPass (TRUE, TRUE, 4, (symbolKey_performOperation) {(symbolKey_performOperation_t) p4}, (const char *) "[all modules] constant expressions", 34);
if (! (decl_isDef (n)))
{
/* avoid gcc warning by using compound statement even if not strictly necessary. */
if (decl_isImp (n))
{
mcQuiet_qprintf0 ((const char *) "Parse implementation module\\n", 29);
doPass (FALSE, TRUE, 5, (symbolKey_performOperation) {(symbolKey_performOperation_t) p5}, (const char *) "[implementation module] build code tree for all procedures and module initializations", 85);
}
else
{
mcQuiet_qprintf0 ((const char *) "Parse program module\\n", 22);
doPass (FALSE, TRUE, 5, (symbolKey_performOperation) {(symbolKey_performOperation_t) p5}, (const char *) "[program module] build code tree for all procedures and module initializations", 78);
}
}
mcQuiet_qprintf0 ((const char *) "walk tree converting it to C/C++\\n", 34);
decl_out ();
}
/*
examineCompilationUnit - opens the source file to obtain the module name and kind of module.
*/
static decl_node examineCompilationUnit (void)
{
/* stop if we see eof, ';' or '[' */
while (((mcLexBuf_currenttoken != mcReserved_eoftok) && (mcLexBuf_currenttoken != mcReserved_semicolontok)) && (mcLexBuf_currenttoken != mcReserved_lsbratok))
{
if (mcLexBuf_currenttoken == mcReserved_definitiontok)
{
mcLexBuf_getToken ();
if (mcLexBuf_currenttoken == mcReserved_moduletok)
{
/* avoid dangling else. */
mcLexBuf_getToken ();
if (mcLexBuf_currenttoken == mcReserved_fortok)
{
mcLexBuf_getToken ();
if (mcLexBuf_currenttoken == mcReserved_stringtok)
{
mcLexBuf_getToken ();
}
else
{
mcflex_mcError (DynamicStrings_string (DynamicStrings_InitString ((const char *) "expecting language string after FOR keyword", 43)));
libc_exit (1);
}
}
if (mcLexBuf_currenttoken == mcReserved_identtok)
{
return decl_lookupDef (nameKey_makekey (mcLexBuf_currentstring));
}
}
else
{
mcflex_mcError (DynamicStrings_string (DynamicStrings_InitString ((const char *) "MODULE missing after DEFINITION keyword", 39)));
}
}
else if (mcLexBuf_currenttoken == mcReserved_implementationtok)
{
/* avoid dangling else. */
mcLexBuf_getToken ();
if (mcLexBuf_currenttoken == mcReserved_moduletok)
{
/* avoid dangling else. */
mcLexBuf_getToken ();
if (mcLexBuf_currenttoken == mcReserved_identtok)
{
return decl_lookupImp (nameKey_makekey (mcLexBuf_currentstring));
}
}
else
{
mcflex_mcError (DynamicStrings_string (DynamicStrings_InitString ((const char *) "MODULE missing after IMPLEMENTATION keyword", 43)));
}
}
else if (mcLexBuf_currenttoken == mcReserved_moduletok)
{
/* avoid dangling else. */
mcLexBuf_getToken ();
if (mcLexBuf_currenttoken == mcReserved_identtok)
{
return decl_lookupModule (nameKey_makekey (mcLexBuf_currentstring));
}
}
mcLexBuf_getToken ();
}
mcflex_mcError (DynamicStrings_string (DynamicStrings_InitString ((const char *) "failed to find module name", 26)));
libc_exit (1);
ReturnException ("../../gcc-read-write/gcc/m2/mc/mcComp.def", 20, 1);
__builtin_unreachable ();
}
/*
peepInto - peeps into source, s, and initializes a definition/implementation or
program module accordingly.
*/
static decl_node peepInto (DynamicStrings_String s)
{
decl_node n;
DynamicStrings_String fileName;
fileName = mcPreprocess_preprocessModule (s);
if (mcLexBuf_openSource (fileName))
{
n = examineCompilationUnit ();
decl_setSource (n, nameKey_makekey (DynamicStrings_string (fileName)));
decl_setMainModule (n);
mcLexBuf_closeSource ();
mcLexBuf_reInitialize ();
return n;
}
else
{
mcPrintf_fprintf1 (FIO_StdErr, (const char *) "failed to open %s\\n", 19, (const unsigned char *) &s, (sizeof (s)-1));
libc_exit (1);
}
ReturnException ("../../gcc-read-write/gcc/m2/mc/mcComp.def", 20, 1);
__builtin_unreachable ();
}
/*
initParser - returns the node of the module found in the source file.
*/
static decl_node initParser (DynamicStrings_String s)
{
mcQuiet_qprintf1 ((const char *) "Compiling: %s\\n", 15, (const unsigned char *) &s, (sizeof (s)-1));
return peepInto (s);
/* static analysis guarentees a RETURN statement will be used before here. */
__builtin_unreachable ();
}
/*
p1 - wrap the pass procedure with the correct parameter values.
*/
static void p1 (decl_node n)
{
if (decl_isDef (n))
{
/* avoid dangling else. */
pass (1, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp1_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isDef}, (mcComp_openFunction) {(mcComp_openFunction_t) openDef});
if ((decl_hasHidden (n)) && (mcOptions_getExtendedOpaque ()))
{
pass (1, decl_lookupImp (decl_getSymName (n)), (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp1_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImp}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
}
else
{
pass (1, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp1_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImpOrModule}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
}
/*
p2 - wrap the pass procedure with the correct parameter values.
*/
static void p2 (decl_node n)
{
if (decl_isDef (n))
{
/* avoid dangling else. */
pass (2, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp2_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isDef}, (mcComp_openFunction) {(mcComp_openFunction_t) openDef});
if ((decl_hasHidden (n)) && (mcOptions_getExtendedOpaque ()))
{
pass (2, decl_lookupImp (decl_getSymName (n)), (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp2_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImp}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
}
else
{
pass (2, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp2_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImpOrModule}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
}
/*
p3 - wrap the pass procedure with the correct parameter values.
*/
static void p3 (decl_node n)
{
if (decl_isDef (n))
{
/* avoid dangling else. */
pass (3, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp3_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isDef}, (mcComp_openFunction) {(mcComp_openFunction_t) openDef});
if ((decl_hasHidden (n)) && (mcOptions_getExtendedOpaque ()))
{
pass (3, decl_lookupImp (decl_getSymName (n)), (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp3_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImp}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
}
else
{
pass (3, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp3_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImpOrModule}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
}
/*
p4 - wrap the pass procedure with the correct parameter values.
*/
static void p4 (decl_node n)
{
if (decl_isDef (n))
{
/* avoid dangling else. */
pass (4, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp4_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isDef}, (mcComp_openFunction) {(mcComp_openFunction_t) openDef});
if ((decl_hasHidden (n)) && (mcOptions_getExtendedOpaque ()))
{
pass (4, decl_lookupImp (decl_getSymName (n)), (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp4_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImp}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
}
else
{
pass (4, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp4_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImpOrModule}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
}
/*
p5 - wrap the pass procedure with the correct parameter values.
*/
static void p5 (decl_node n)
{
pass (5, n, (mcComp_parserFunction) {(mcComp_parserFunction_t) mcp5_CompilationUnit}, (decl_isNodeF) {(decl_isNodeF_t) decl_isImpOrModule}, (mcComp_openFunction) {(mcComp_openFunction_t) openMod});
}
/*
doOpen -
*/
static unsigned int doOpen (decl_node n, DynamicStrings_String symName, DynamicStrings_String fileName, unsigned int exitOnFailure)
{
DynamicStrings_String postProcessed;
mcQuiet_qprintf2 ((const char *) " Module %-20s : %s\\n", 22, (const unsigned char *) &symName, (sizeof (symName)-1), (const unsigned char *) &fileName, (sizeof (fileName)-1));
postProcessed = mcPreprocess_preprocessModule (fileName);
decl_setSource (n, nameKey_makekey (DynamicStrings_string (postProcessed)));
decl_setCurrentModule (n);
if (mcLexBuf_openSource (postProcessed))
{
return TRUE;
}
mcPrintf_fprintf1 (FIO_StdErr, (const char *) "failed to open %s\\n", 19, (const unsigned char *) &fileName, (sizeof (fileName)-1));
if (exitOnFailure)
{
libc_exit (1);
}
return FALSE;
/* static analysis guarentees a RETURN statement will be used before here. */
__builtin_unreachable ();
}
/*
openDef - try and open the definition module source file.
Returns true/false if successful/unsuccessful or
exitOnFailure.
*/
static unsigned int openDef (decl_node n, unsigned int exitOnFailure)
{
nameKey_Name sourceName;
DynamicStrings_String symName;
DynamicStrings_String fileName;
sourceName = decl_getSource (n);
symName = DynamicStrings_InitStringCharStar (nameKey_keyToCharStar (decl_getSymName (n)));
if (sourceName == nameKey_NulName)
{
/* avoid dangling else. */
if (! (mcSearch_findSourceDefFile (symName, &fileName)))
{
mcPrintf_fprintf1 (FIO_StdErr, (const char *) "failed to find definition module %s.def\\n", 41, (const unsigned char *) &symName, (sizeof (symName)-1));
if (exitOnFailure)
{
libc_exit (1);
}
}
}
else
{
fileName = DynamicStrings_InitStringCharStar (nameKey_keyToCharStar (sourceName));
}
return doOpen (n, symName, fileName, exitOnFailure);
/* static analysis guarentees a RETURN statement will be used before here. */
__builtin_unreachable ();
}
/*
openMod - try and open the implementation/program module source file.
Returns true/false if successful/unsuccessful or
exitOnFailure.
*/
static unsigned int openMod (decl_node n, unsigned int exitOnFailure)
{
nameKey_Name sourceName;
DynamicStrings_String symName;
DynamicStrings_String fileName;
sourceName = decl_getSource (n);
symName = DynamicStrings_InitStringCharStar (nameKey_keyToCharStar (decl_getSymName (n)));
if (sourceName == nameKey_NulName)
{
/* avoid dangling else. */
if (! (mcSearch_findSourceModFile (symName, &fileName)))
{
if (decl_isImp (n))
{
mcPrintf_fprintf1 (FIO_StdErr, (const char *) "failed to find implementation module %s.mod\\n", 45, (const unsigned char *) &symName, (sizeof (symName)-1));
}
else
{
mcPrintf_fprintf1 (FIO_StdErr, (const char *) "failed to find program module %s.mod\\n", 38, (const unsigned char *) &symName, (sizeof (symName)-1));
}
if (exitOnFailure)
{
libc_exit (1);
}
}
}
else
{
fileName = DynamicStrings_InitStringCharStar (nameKey_keyToCharStar (sourceName));
}
return doOpen (n, symName, fileName, exitOnFailure);
/* static analysis guarentees a RETURN statement will be used before here. */
__builtin_unreachable ();
}
/*
pass -
*/
static void pass (unsigned int no, decl_node n, mcComp_parserFunction f, decl_isNodeF isnode, mcComp_openFunction open)
{
if (((*isnode.proc) (n)) && (! (decl_isVisited (n))))
{
decl_setVisited (n);
if ((*open.proc) (n, TRUE))
{
if (! ((*f.proc) ()))
{
mcError_writeFormat0 ((const char *) "compilation failed", 18);
mcLexBuf_closeSource ();
return ;
}
mcLexBuf_closeSource ();
}
}
}
/*
doPass -
*/
static void doPass (unsigned int parseDefs, unsigned int parseMain, unsigned int no, symbolKey_performOperation p, const char *desc_, unsigned int _desc_high)
{
DynamicStrings_String descs;
char desc[_desc_high+1];
/* make a local copy of each unbounded array. */
memcpy (desc, desc_, _desc_high+1);
setToPassNo (no);
descs = DynamicStrings_InitString ((const char *) desc, _desc_high);
mcQuiet_qprintf2 ((const char *) "Pass %d: %s\\n", 13, (const unsigned char *) &no, (sizeof (no)-1), (const unsigned char *) &descs, (sizeof (descs)-1));
decl_foreachDefModuleDo ((symbolKey_performOperation) {(symbolKey_performOperation_t) decl_unsetVisited});
decl_foreachModModuleDo ((symbolKey_performOperation) {(symbolKey_performOperation_t) decl_unsetVisited});
if (parseMain)
{
decl_unsetVisited (decl_getMainModule ());
if (parseDefs && (decl_isImp (decl_getMainModule ())))
{
/* we need to parse the definition module of a corresponding implementation module. */
(*p.proc) (reinterpret_cast<void *> (decl_lookupDef (decl_getSymName (decl_getMainModule ()))));
}
(*p.proc) (reinterpret_cast<void *> (decl_getMainModule ()));
}
if (parseDefs)
{
decl_foreachDefModuleDo (p);
}
mcError_flushWarnings ();
mcError_flushErrors ();
setToPassNo (0);
}
/*
setToPassNo -
*/
static void setToPassNo (unsigned int n)
{
currentPass = n;
}
/*
init - initialise data structures for this module.
*/
static void init (void)
{
setToPassNo (0);
}
/*
compile - check, s, is non NIL before calling doCompile.
*/
extern "C" void mcComp_compile (DynamicStrings_String s)
{
if (s != NULL)
{
doCompile (s);
}
}
/*
getPassNo - return the pass no.
*/
extern "C" unsigned int mcComp_getPassNo (void)
{
return currentPass;
/* static analysis guarentees a RETURN statement will be used before here. */
__builtin_unreachable ();
}
extern "C" void _M2_mcComp_init (__attribute__((unused)) int argc,__attribute__((unused)) char *argv[],__attribute__((unused)) char *envp[])
{
init ();
}
extern "C" void _M2_mcComp_fini (__attribute__((unused)) int argc,__attribute__((unused)) char *argv[],__attribute__((unused)) char *envp[])
{
}
|