Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / audio / xcdplayer / patches / patch-cdrom__sgi_c
blob4afba246045a521263e2c082d3977e84a88adbcc
1 $NetBSD$
3 - needs stdlib.h
4 - use calloc properly
6 --- cdrom_sgi.c~        1993-01-12 18:59:51.000000000 +0000
7 +++ cdrom_sgi.c
8 @@ -26,6 +26,7 @@ static int c;
9  # include <mntent.h>
10  # include <string.h>
11  # include <signal.h>
12 +# include <stdlib.h>
14  # include <sys/buf.h>
16 @@ -1075,10 +1076,9 @@ unsigned short *
17  ushort_malloc(n)
18         int             n;
19  {
20 -       extern char     *calloc();
21         unsigned short  *ptr;
23 -       ptr = (unsigned short *) calloc(n, sizeof(unsigned short));
24 +       ptr = calloc(n, sizeof(unsigned short));
25         if (ptr == NULL) {
26                 perror("calloc");
27                 exit(1);
28 @@ -1091,10 +1091,9 @@ struct msf *
29  msf_malloc(n)
30         int             n;
31  {
32 -       extern char     *calloc();
33         struct msf      *ptr;
35 -       ptr = (struct msf *) calloc(n, sizeof(struct msf));
36 +       ptr = calloc(n, sizeof(struct msf));
37         if (ptr == NULL) {
38                 perror("calloc");
39                 exit(1);