1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/news/cnews/files/patch-bencode.c
Dirk Meyer 922bee6599 - fix missing includes
- fix build with clang
Feature safe:	yes
2011-11-27 10:58:02 +00:00

11 lines
278 B
C

--- batch/bencode.c.orig 1991-11-04 19:16:50.000000000 +0100
+++ batch/bencode.c 2011-05-12 14:53:40.000000000 +0200
@@ -2,6 +2,7 @@
* bencode [file]
*/
#include <stdio.h>
+#include <stdlib.h>
#include "coder.h"
#define MAXPERLINE 78 /* max chars/line */
char *myname;