From 4e76cae3cbd3c746175d72d20a976a317ca4d4b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Tue, 3 Jun 1997 16:26:08 +0200 Subject: [PATCH] Some stupid compilers (AIX) have problems with volatile functions. Rev: src/modules/system/system.c:1.18 --- src/modules/system/system.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/system/system.c b/src/modules/system/system.c index 13373ae27d..fe0437d388 100644 --- a/src/modules/system/system.c +++ b/src/modules/system/system.c @@ -1,5 +1,5 @@ /* - * $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 * @@ -14,7 +14,7 @@ #include "system.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 <las.h> #include <interpret.h> @@ -62,7 +62,7 @@ RCSID("$Id: system.c,v 1.17 1997/05/18 22:25:09 grubba Exp $"); /* Helper functions */ -static volatile void report_error(const char *function_name) +static void report_error(const char *function_name) { char *error_msg = "Unknown reason"; -- GitLab