1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/deskutils/xrolo/files/patch-ab
Lars Koeller 4e2d4e0694 o Fix build error on STABLE due to conflicting definition of
calloc an malloc.

PR:		ports/43772
Submitted by:	charles.allen@angelo.edu
2002-11-03 21:44:31 +00:00

46 lines
945 B
Plaintext

*** main.c.org Sat Jan 9 22:25:04 1999
--- main.c Sat Jan 9 22:26:03 1999
***************
*** 39,45 ****
#include <sys/param.h>
#include <stdio.h>
#include <sys/types.h>
! #include <sys/dir.h>
#include <xview/xview.h>
#include <xview/panel.h>
#include <xview/textsw.h>
--- 39,45 ----
#include <sys/param.h>
#include <stdio.h>
#include <sys/types.h>
! #include <sys/dirent.h>
#include <xview/xview.h>
#include <xview/panel.h>
#include <xview/textsw.h>
***************
*** 65,72 ****
extern void init_rolo ();
! extern char *check_args (), *getenv (), *strcpy (),
! *calloc (), *malloc ();
extern char *exp_fname();
--- 65,72 ----
extern void init_rolo ();
! extern char *check_args (), *getenv (), *strcpy ();/*,
! *calloc (), *malloc ();*/
extern char *exp_fname();
***************
*** 320,323 ****
return (strcpy (q, p));
}
-
--- 320,322 ----