aboutsummaryrefslogtreecommitdiff
path: root/nxcomp
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-07-12 21:41:21 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-07-26 10:12:44 +0200
commit1e15760a3e59cff09f9ccc0780bca544a90a1b6b (patch)
treea177d7fb6443d7005fd866a68aac15b3fc2d3c25 /nxcomp
parent1894e04df791c0592993de3100e4fc682ec2ebe7 (diff)
downloadnx-libs-1e15760a3e59cff09f9ccc0780bca544a90a1b6b.tar.gz
nx-libs-1e15760a3e59cff09f9ccc0780bca544a90a1b6b.tar.bz2
nx-libs-1e15760a3e59cff09f9ccc0780bca544a90a1b6b.zip
nxcomp/src/Loop.cpp: Drop duplicate prototypes (which already exist in Misc.h).
Diffstat (limited to 'nxcomp')
-rw-r--r--nxcomp/src/Loop.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/nxcomp/src/Loop.cpp b/nxcomp/src/Loop.cpp
index 907ad04df..6adb2453e 100644
--- a/nxcomp/src/Loop.cpp
+++ b/nxcomp/src/Loop.cpp
@@ -334,11 +334,9 @@ Keeper *keeper = NULL;
int (*handler)(int) = NULL;
//
-// Signal handling functions.
+// Signal handling functions (that are not already mentioned in Misc.h).
//
-void DisableSignals();
-void EnableSignals();
void InstallSignals();
static void RestoreSignals();
@@ -364,12 +362,9 @@ void RegisterChild(int child);
static int CheckAbort();
//
-// Timer handling utilities.
+// Timer handling utilities (that are not already mentioned in Misc.h).
//
-void SetTimer(int timeout);
-void ResetTimer();
-
static void HandleTimer(int signal);
//