mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
fea9346f1d
* Use <stdarg.h> instead of <varargs.h> [1]. Use of <varargs.h> causes error on FreeBSD 5-current with GCC 3.3.1. Submitted by: Hajimu UMEMOTO <ume@mahoroba.org> [1] PR: ports/54524
14 lines
306 B
C
14 lines
306 B
C
Index: h/mh.h
|
|
diff -u h/mh.h.orig h/mh.h
|
|
--- h/mh.h.orig Wed Dec 2 02:05:00 1998
|
|
+++ h/mh.h Fri Jul 18 16:47:28 2003
|
|
@@ -253,7 +253,7 @@
|
|
int atooi ();
|
|
char **brkstring ();
|
|
void closefds ();
|
|
-char *concat ();
|
|
+char *concat (char *, ...);
|
|
char *copy ();
|
|
char **copyip ();
|
|
void cpydata ();
|