mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b8c4e777df
- Add secondary site to MASTER_SITES - Support CC/CFLAGS/PREFIX properly - Support install macros PR: 15969 Submitted by: tkato@prontomail.ne.jp
15 lines
301 B
Plaintext
15 lines
301 B
Plaintext
--- dynarray.c.orig Sat Jan 18 13:22:27 1997
|
|
+++ dynarray.c Sat Jan 8 01:11:56 2000
|
|
@@ -17,7 +17,11 @@
|
|
*
|
|
***********************************************************************/
|
|
|
|
+#ifndef __STDC__
|
|
#include <malloc.h>
|
|
+#else
|
|
+#include <stdlib.h>
|
|
+#endif
|
|
#include "dynarray.h"
|
|
|
|
#define NULL 0
|