Changeset 3306 for trunk


Ignore:
Timestamp:
May 6, 2007, 2:21:24 AM (18 years ago)
Author:
bird
Message:

fixed getcwd issue (drop the replacement stuff).

Location:
trunk/essentials/sys-apps/coreutils/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/sys-apps/coreutils/lib/getcwd.c

    r2560 r3306  
    1616   with this program; if not, write to the Free Software Foundation,
    1717   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
     18
     19#ifndef __KLIBC__ /* This sucks big time for us guys that sometimes have drive letters. */
    1820
    1921#ifdef HAVE_CONFIG_H
     
    405407weak_alias (__getcwd, getcwd)
    406408#endif
     409
     410#endif /* !__KLIBC__ */
  • trunk/essentials/sys-apps/coreutils/lib/getcwd.h

    r2554 r3306  
    2525#include <unistd.h>
    2626
     27#ifndef __KLIBC__ /* this sucks for us */
     28
    2729/* If necessary, systematically rename identifiers so that they do not
    2830   collide with the system function.  Renaming avoids problems with
     
    3941char *getcwd (char *, size_t);
    4042#endif
     43
     44#endif /* !__KLIBC__ */
Note: See TracChangeset for help on using the changeset viewer.