[git commit] Only use fstat64 when LFS is enabled

Mike Frysinger vapier at gentoo.org
Sun May 24 02:25:00 UTC 2009


On Wednesday 20 May 2009 16:00:07 Austin Foxley wrote:
> --- a/libc/unistd/daemon.c
> +++ b/libc/unistd/daemon.c
> @@ -123,10 +123,18 @@ int daemon( int nochdir, int noclose )
>  #else
>  	if (!noclose)
>  	{
> -		struct stat64 st;
> +#ifdef __UCLIBC_HAS_LFS__
> +        struct stat64 st;
> +#else
> +        struct stat st;
> +#endif

you broke style here (space vs tabs)
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.busybox.net/pipermail/uclibc/attachments/20090523/a5736cf8/attachment.pgp>


More information about the uClibc mailing list