version 1.54, 2014/01/26 18:21:30
|
version 1.80, 2025/04/15 10:17:51
|
Line 1
|
Line 1
|
/* |
/* |
================================================================================ |
================================================================================ |
RPL/2 (R) version 4.1.17 |
RPL/2 (R) version 4.1.36 |
Copyright (C) 1989-2014 Dr. BERTRAND Joël |
Copyright (C) 1989-2025 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 |