summaryrefslogtreecommitdiffstats
path: root/globals.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-05-11 06:04:39 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-05-11 06:04:39 +0000
commitce11f0fee9b9a4bfd18a4d4b9eeb276af12c5610 (patch)
treeb901a86bc277e54a0a910aa6813d5704d7b121a8 /globals.h
parent1c99ec8a01c3204b267d52e332da77b1254caf8f (diff)
Check volatility of sig_atomic_t.
Diffstat (limited to 'globals.h')
-rw-r--r--globals.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/globals.h b/globals.h
index e2d3c3a0..47c3cdfc 100644
--- a/globals.h
+++ b/globals.h
@@ -135,9 +135,9 @@ WHERE short ScoreThresholdRead;
WHERE short ScoreThresholdFlag;
/* flags for received signals */
-WHERE volatile sig_atomic_t SigAlrm INITVAL (0);
-WHERE volatile sig_atomic_t SigInt INITVAL (0);
-WHERE volatile sig_atomic_t SigWinch INITVAL (0);
+WHERE SIG_ATOMIC_VOLATILE_T SigAlrm INITVAL (0);
+WHERE SIG_ATOMIC_VOLATILE_T SigInt INITVAL (0);
+WHERE SIG_ATOMIC_VOLATILE_T SigWinch INITVAL (0);
WHERE int CurrentMenu;