mirror of
https://github.com/git/git.git
synced 2026-03-13 18:33:25 +01:00
read_in_full()'s is used in compat/pread.c. read_in_full() is declared in cache.h. But we can't include cache.h because too many macros are defined there. Using read_in_full() without including cache.h is dangerous because we wouldn't recognize if its prototyp changed. gcc issues a warning about that. This commit adds a forward decl to git-compat-util.h. git-compat-util.h is included by compat/pread.c _and_ cache.h. Hence, changes in cache.h would be detected. Signed-off-by: Steffen Prohaska <prohaska@zib.de>
19 lines
433 B
C
19 lines
433 B
C
#include "../git-compat-util.h"
|
|
|
|
ssize_t git_pread(int fd, void *buf, size_t count, off_t offset)
|
|
{
|
|
off_t current_offset;
|
|
ssize_t rc;
|
|
|
|
current_offset = lseek(fd, 0, SEEK_CUR);
|
|
|
|
if (lseek(fd, offset, SEEK_SET) < 0)
|
|
return -1;
|
|
|
|
rc = read_in_full(fd, buf, count);
|
|
|
|
if (current_offset != lseek(fd, current_offset, SEEK_SET))
|
|
return -1;
|
|
return rc;
|
|
}
|