1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

getline: split out for darwin systems

At least on OS X 10.5 and older, getline does not exist.  So split out the
function from the mingw code so that we can pull it in for Darwin systems.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger
2010-01-08 02:48:03 -05:00
committed by Wolfgang Denk
parent e852d36a1e
commit 64b1502133
6 changed files with 111 additions and 99 deletions

View File

@@ -23,3 +23,6 @@
#ifdef __MINGW32__
#include "mingw_support.c"
#endif
#ifdef __APPLE__
#include "getline.c"
#endif