mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
19 lines
476 B
Plaintext
19 lines
476 B
Plaintext
|
Eliminate a compiler warning under FreeBSD.
|
||
|
|
||
|
Index: m3/quake/src/utils.c
|
||
|
===================================================================
|
||
|
RCS file: /home/jdp/m3-cvs/m3/quake/src/utils.c,v
|
||
|
retrieving revision 1.1.1.1
|
||
|
diff -u -r1.1.1.1 utils.c
|
||
|
--- utils.c 1996/09/24 05:22:00 1.1.1.1
|
||
|
+++ utils.c 1996/09/24 05:32:34
|
||
|
@@ -10,7 +10,7 @@
|
||
|
*/
|
||
|
|
||
|
#include "quake.h"
|
||
|
-#if !defined(TARGET_NEXT)
|
||
|
+#if !defined(TARGET_NEXT) && !defined(TARGET_FreeBSD2)
|
||
|
#include <malloc.h>
|
||
|
#endif
|
||
|
|