summaryrefslogtreecommitdiff
path: root/x11/xaniroc/patches/patch-aa
blob: 26cae6761d2724fd6c69f86006008ead17b8fd08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
$NetBSD: patch-aa,v 1.1 2005/04/14 07:28:40 tron Exp $

--- xaniroc.c.orig	1994-01-07 10:51:13.000000000 +0000
+++ xaniroc.c	2005-04-14 08:18:12.000000000 +0100
@@ -62,22 +62,19 @@
  ***************************************************************************************************
  */
 
-void main(int argc, char *argv[]);
+int main(int argc, char *argv[]);
 void usage(void);
 void frame_wait(void);
 int  pointer_in_rootwindow(void);
-#ifdef  SVR4
 SIGVAL cleanup_and_exit(int sig);
-#else
-SIGVAL cleanup_and_exit(int sig, int code, struct sigcontext *scp, char *addr);
-#endif	/* SVR4 */
 
 /***************************************************************************************************
  *	the main function of XAniroc
  ***************************************************************************************************
  */
 
-void main(int argc, char *argv[])
+int
+main(int argc, char *argv[])
 {
 
 /***************************************************************************************************
@@ -311,6 +308,7 @@
 			if(i >= 24) i = 0;
 		}
 	}
+	return 0;
 } /*end of main */
 
 /***************************************************************************************************
@@ -387,11 +385,7 @@
  *				        signal handler that cleans up the cursor
  ***************************************************************************************************
  */
-#ifdef  SVR4
 SIGVAL cleanup_and_exit(int sig)
-#else
-SIGVAL cleanup_and_exit(int sig, int code,struct sigcontext *scp, char *addr)
-#endif	/* SVR4 */
 {
         XUndefineCursor(display, XDefaultRootWindow(display));
         XCloseDisplay(display);