Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
16 * Part of : libc library
17 * gets configurable system variables.
24 #include <limits.h> //_POSIX_XXXX_XXXX
25 #include <sys/unistd.h> //_PC_XXXX_XXXX
29 * get configurable system variables.
35 fpathconf(int fd, int name)
39 fd = fd; /*to fix the warning 'variable/argument not used in function' */
40 #endif //__SYMBIAN32__
43 ret = _POSIX_LINK_MAX;
46 ret = _POSIX_NAME_MAX;
49 ret = _POSIX_PATH_MAX;
52 ret = _POSIX_PIPE_BUF;
55 ret = _POSIX_NO_TRUNC;
57 case _PC_VDISABLE: //no concept of terminal
58 case _PC_MAX_CANON: //no concept of terminal
59 case _PC_MAX_INPUT: //no concept of terminal
60 case _PC_CHOWN_RESTRICTED: //no concept of ownership