1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Fix an implicit declaration of the exit function.

PR:		ports/178251
Submitted by:	Chad Slater <chad.slater (at) gmail.com>
Approved by:	maintainer time-out (8 months)
This commit is contained in:
Thierry Thomas 2014-01-27 21:46:48 +00:00
parent 47ea1bbf39
commit 4ab70118ac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=341459

View File

@ -0,0 +1,8 @@
--- unix2dos.c.orig 2001-05-23 01:58:39.000000000 +0200
+++ unix2dos.c 2014-01-27 22:41:13.000000000 +0100
@@ -1,4 +1,5 @@
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>