1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/graphics/netpbm/files/patch-bj
Jeremy Lea a7edfc5fa5 - Fix compile error
- Fix typo in man page

I've left the dependency since libjpeg is explictly used by this port.

PR:		17851
Submitted by:	tkato@prontomail.ne.jp
2000-04-08 06:12:34 +00:00

15 lines
281 B
Plaintext

--- ppm/eyuvtoppm.c.orig Fri Mar 31 07:09:32 2000
+++ ppm/eyuvtoppm.c Sat Apr 8 12:00:00 2000
@@ -40,8 +40,11 @@
* HEADER FILES *
*==============*/
#include <stdio.h>
+#ifdef __STDC__
#include <stdlib.h>
+#else
#include <malloc.h>
+#endif
typedef unsigned char uint8;