Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/converters/ish/files/patch-ish.c
16461 views
1
--- ish.c.orig Sun Aug 5 20:04:08 1990
2
+++ ish.c Fri Mar 29 15:18:25 2002
3
@@ -48,7 +48,7 @@
4
long lsize;
5
char *filename = "file.ish";
6
7
-FILE *opath = stdout;
8
+FILE *opath = NULL;
9
FILE *ipath;
10
char name[NAMLEN];
11
12
@@ -61,7 +61,7 @@
13
static int ishargc=0;
14
static char *ishargv[32];
15
16
-void main(argc, argv)
17
+int main(argc, argv)
18
int argc;
19
char **argv;
20
{
21
@@ -69,6 +69,7 @@
22
char *p;
23
FILE *fopen();
24
25
+ opath = stdout;
26
if (argc < 2)
27
help();
28
while(--argc > 0) {
29
30