1.1 --- a/epoc32/include/stdapis/ftw.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/stdapis/ftw.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -2,7 +2,7 @@
1.4
1.5 /*
1.6 * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
1.7 - * © Portions copyright (c) 2007 Symbian Software Ltd. All rights reserved.
1.8 +
1.9 *
1.10 * Permission to use, copy, modify, and distribute this software for any
1.11 * purpose with or without fee is hereby granted, provided that the above
1.12 @@ -23,6 +23,8 @@
1.13 * $FreeBSD: src/include/ftw.h,v 1.2 2004/08/24 13:00:54 tjr Exp $
1.14 */
1.15
1.16 +/* Portions Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
1.17 +
1.18 #ifndef _FTW_H
1.19 #define _FTW_H
1.20
1.21 @@ -61,6 +63,11 @@
1.22
1.23 IMPORT_C int ftw(const char *, int (*)(const char *, const struct stat *, int), int);
1.24
1.25 +#if defined(SYMBIAN_OE_LARGE_FILE_SUPPORT) && !defined(SYMBIAN_OE_NO_LFS)
1.26 +#define ftw64 ftw
1.27 +#endif /* SYMBIAN_OE_LARGE_FILE_SUPPORT && !SYMBIAN_OE_NO_LFS */
1.28 +
1.29 +
1.30 #ifndef __SYMBIAN32__
1.31 IMPORT_C int nftw(const char *, int (*)(const char *, const struct stat *, int,
1.32 struct FTW *), int, int);