diff options
| author | Roland McGrath <[email protected]> | 2005-08-25 01:49:35 +0000 |
|---|---|---|
| committer | Roland McGrath <[email protected]> | 2005-08-25 01:49:35 +0000 |
| commit | 4c305da9de0ecfe9af64cb6787b2b4b8a6aa8dd5 (patch) | |
| tree | aeba7918420be8f6c080f902529a482993388e5f /src/ranlib.c | |
| parent | 6830bc40bb6a38dee917bebc856c7c1ba5126e24 (diff) | |
2005-08-24 Roland McGrath <[email protected]>
* line2addr.c (print_address): Omit () for DSOs.
Diffstat (limited to 'src/ranlib.c')
| -rw-r--r-- | src/ranlib.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ranlib.c b/src/ranlib.c index 1914a178..ce2e6820 100644 --- a/src/ranlib.c +++ b/src/ranlib.c @@ -40,6 +40,11 @@ #include <system.h> +#define pread_retry(fd, buf, n, off) \ + TEMP_FAILURE_RETRY (pread (fd, buf, n, off)) +#define write_retry(fd, buf, n) \ + TEMP_FAILURE_RETRY (write (fd, buf, n)) + #if __BYTE_ORDER == __LITTLE_ENDIAN # define le_bswap_32(val) bswap_32 (val) #else |
