From ffd672bec73a02ad28d5ae4f173ec46ad35a1e14 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Fri, 19 Apr 2013 09:13:27 +0000 Subject: [PATCH] * newlib/libc/search/hash.c: Revert patch from 2012-08-08. --- newlib/ChangeLog | 4 ++++ newlib/libc/search/hash.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 9d68e7ae8..29153f70f 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2013-04-19 Corinna Vinschen + + * newlib/libc/search/hash.c: Revert patch from 2012-08-08. + 2013-04-16 Sebastian Huber * libc/sys/rtems/sys/queue.h: Delete file. diff --git a/newlib/libc/search/hash.c b/newlib/libc/search/hash.c index 997acb3f6..2b102c8f8 100644 --- a/newlib/libc/search/hash.c +++ b/newlib/libc/search/hash.c @@ -143,7 +143,7 @@ _DEFUN(__hash_open, (file, flags, mode, info, dflags), #ifdef __USE_INTERNAL_STAT64 (_stat64(file, &statbuf) && (errno == ENOENT))) { #else - (_stat(file, &statbuf) && (errno == ENOENT))) { + (stat(file, &statbuf) && (errno == ENOENT))) { #endif if (errno == ENOENT) errno = 0; /* Just in case someone looks at errno */ @@ -159,7 +159,7 @@ _DEFUN(__hash_open, (file, flags, mode, info, dflags), #ifdef __USE_INTERNAL_STAT64 _fstat64(hashp->fp, &statbuf) == 0 && statbuf.st_size == 0) #else - _fstat(hashp->fp, &statbuf) == 0 && statbuf.st_size == 0) + fstat(hashp->fp, &statbuf) == 0 && statbuf.st_size == 0) #endif new_table = 1; @@ -341,7 +341,7 @@ init_hash(hashp, file, info) #ifdef __USE_INTERNAL_STAT64 if (_stat64(file, &statbuf)) #else - if (_stat(file, &statbuf)) + if (stat(file, &statbuf)) #endif return (NULL); hashp->BSIZE = statbuf.st_blksize;