version 1.55, 2014/04/25 07:37:29
|
version 1.68, 2017/08/03 17:17:43
|
Line 1
|
Line 1
|
/* |
/* |
================================================================================ |
================================================================================ |
RPL/2 (R) version 4.1.18 |
RPL/2 (R) version 4.1.28 |
Copyright (C) 1989-2014 Dr. BERTRAND Joël |
Copyright (C) 1989-2017 Dr. BERTRAND Joël |
|
|
This file is part of RPL/2. |
This file is part of RPL/2. |
|
|
Line 267 affichage_pile(struct_processus *s_etat_
|
Line 267 affichage_pile(struct_processus *s_etat_
|
return; |
return; |
} |
} |
|
|
|
// Bug de gcc à partir de gcc 4.6 (bug 48544) |
|
#pragma GCC diagnostic push |
|
#pragma GCC diagnostic ignored "-Wclobbered" |
|
|
void |
void |
ecriture_pile(struct_processus *s_etat_processus, file *flux, |
ecriture_pile(struct_processus *s_etat_processus, file *flux, |
struct_liste_chainee *l, integer8 niveau_courant) |
struct_liste_chainee *l, integer8 niveau_courant) |
Line 470 impression_pile(struct_processus *s_etat
|
Line 474 impression_pile(struct_processus *s_etat
|
return; |
return; |
} |
} |
|
|
|
#pragma GCC diagnostic pop |
|
|
// vim: ts=4 |
// vim: ts=4 |