Skip to content
Snippets Groups Projects
Commit 4e76cae3 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Some stupid compilers (AIX) have problems with volatile functions.

Rev: src/modules/system/system.c:1.18
parent 8836823f
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: system.c,v 1.17 1997/05/18 22:25:09 grubba Exp $ * $Id: system.c,v 1.18 1997/06/03 14:26:08 grubba Exp $
* *
* System-call module for Pike * System-call module for Pike
* *
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include "system.h" #include "system.h"
#include <global.h> #include <global.h>
RCSID("$Id: system.c,v 1.17 1997/05/18 22:25:09 grubba Exp $"); RCSID("$Id: system.c,v 1.18 1997/06/03 14:26:08 grubba Exp $");
#include <module_support.h> #include <module_support.h>
#include <las.h> #include <las.h>
#include <interpret.h> #include <interpret.h>
...@@ -62,7 +62,7 @@ RCSID("$Id: system.c,v 1.17 1997/05/18 22:25:09 grubba Exp $"); ...@@ -62,7 +62,7 @@ RCSID("$Id: system.c,v 1.17 1997/05/18 22:25:09 grubba Exp $");
/* Helper functions */ /* Helper functions */
static volatile void report_error(const char *function_name) static void report_error(const char *function_name)
{ {
char *error_msg = "Unknown reason"; char *error_msg = "Unknown reason";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment