summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoland McGrath <[email protected]>2005-08-25 01:49:35 +0000
committerRoland McGrath <[email protected]>2005-08-25 01:49:35 +0000
commit4c305da9de0ecfe9af64cb6787b2b4b8a6aa8dd5 (patch)
treeaeba7918420be8f6c080f902529a482993388e5f /lib
parent6830bc40bb6a38dee917bebc856c7c1ba5126e24 (diff)
2005-08-24 Roland McGrath <[email protected]>
* line2addr.c (print_address): Omit () for DSOs.
Diffstat (limited to 'lib')
-rw-r--r--lib/ChangeLog4
-rw-r--r--lib/system.h8
2 files changed, 0 insertions, 12 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index f7760f13..5b79d096 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,7 +1,3 @@
-2005-08-28 Ulrich Drepper <[email protected]>
-
- * system.h: Define pwrite_retry, write_retry, and pread_retry.
-
2005-08-06 Ulrich Drepper <[email protected]>
* Makefile.am (xmalloc_CFLAGS): Define only if !GPROF.
diff --git a/lib/system.h b/lib/system.h
index 998bf729..e29c2dbb 100644
--- a/lib/system.h
+++ b/lib/system.h
@@ -37,12 +37,4 @@ extern int crc32_file (int fd, uint32_t *resp);
#define gettext_noop(Str) Str
-
-#define pwrite_retry(fd, buf, len, off) \
- TEMP_FAILURE_RETRY (pwrite (fd, buf, len, off))
-#define write_retry(fd, buf, n) \
- TEMP_FAILURE_RETRY (write (fd, buf, n))
-#define pread_retry(fd, buf, len, off) \
- TEMP_FAILURE_RETRY (pread (fd, buf, len, off))
-
#endif /* system.h */