summaryrefslogtreecommitdiffstats
path: root/src/ranlib.c
diff options
context:
space:
mode:
authorUlrich Drepper <[email protected]>2005-08-29 06:25:06 +0000
committerUlrich Drepper <[email protected]>2005-08-29 06:25:06 +0000
commit6abe27be7178a891326f29337a7aa31aa3e5482d (patch)
tree5aab3d095cd0f5bc62d5e3f004023032a005c913 /src/ranlib.c
parentc2c3b1ecbe235c4e04ddcbafe6f0f27dccd86d9b (diff)
Fix more EINTR handling problems. Add jump prediction.
Diffstat (limited to 'src/ranlib.c')
-rw-r--r--src/ranlib.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ranlib.c b/src/ranlib.c
index ce2e6820..1914a178 100644
--- a/src/ranlib.c
+++ b/src/ranlib.c
@@ -40,11 +40,6 @@
#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