blob: 81baa76ce5e0cb07895a8dfa5b3d5e75e0d5337a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- xvt-1.0/xvt.c.orig 2009-09-04 15:49:13.000000000 +0200
+++ xvt-1.0/xvt.c 2009-09-04 15:49:13.000000000 +0200
@@ -41,9 +41,9 @@
#endif /* UKC_LOCATIONS */
#ifdef __STDC__
-void main(int,char **);
+int main(int,char **);
#else
-void main();
+int main();
#endif
extern int debugging;
@@ -67,7 +67,7 @@
* master end of the pseudo-teletype pair with the command talking to
* the slave.
*/
-void
+int
main(argc,argv)
int argc;
char **argv;
|