Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/emulators/frodo/files/patch-SAM.cpp
16166 views
1
--- SAM.cpp.orig 2002-01-02 21:20:16 UTC
2
+++ SAM.cpp
3
@@ -205,7 +205,7 @@ static const char adr_length[] = {1, 1,
4
5
// Prototypes
6
static void error(char *s);
7
-static void handle_abort(...);
8
+static void handle_abort(int sig);
9
static void init_abort(void);
10
static void exit_abort(void);
11
static bool aborted(void);
12
@@ -470,7 +470,7 @@ static bool WasAborted;
13
struct sigaction my_sa;
14
#endif
15
16
-static void handle_abort(...)
17
+static void handle_abort(int sig)
18
{
19
WasAborted = true;
20
#if !defined(HAVE_SIGACTION) && defined(HAVE_SIGNAL)
21
22