mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
a7edfc5fa5
- 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
15 lines
281 B
Plaintext
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;
|
|
|