diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-11-04 19:59:40 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-11-04 19:59:40 +0100 |
commit | b830319d49a421741b61ae29ce32ab37f8b970ed (patch) | |
tree | 9611a0ac70047e08ed3850dce6d9cdf143b9e833 /sysdeps/unix/sysv | |
parent | 512a49be20d42af59968513cd5094b3918cf6663 (diff) | |
download | glibc-b830319d49a421741b61ae29ce32ab37f8b970ed.tar.gz glibc-b830319d49a421741b61ae29ce32ab37f8b970ed.tar.xz glibc-b830319d49a421741b61ae29ce32ab37f8b970ed.zip |
[BZ #157] Remove include/stub-tag.h for good.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/epoll_pwait.c | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/futimens.c | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/lutimes.c | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/readahead.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sync_file_range.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/utimensat.c | 1 |
7 files changed, 0 insertions, 10 deletions
diff --git a/sysdeps/unix/sysv/linux/epoll_pwait.c b/sysdeps/unix/sysv/linux/epoll_pwait.c index 70756e8443..7bea455b49 100644 --- a/sysdeps/unix/sysv/linux/epoll_pwait.c +++ b/sysdeps/unix/sysv/linux/epoll_pwait.c @@ -64,7 +64,6 @@ int epoll_pwait (int epfd, struct epoll_event *events, } stub_warning (epoll_pwait) -# include <stub-tag.h> #endif libc_hidden_def (epoll_pwait) diff --git a/sysdeps/unix/sysv/linux/futimens.c b/sysdeps/unix/sysv/linux/futimens.c index f586b80f31..c4469fc93a 100644 --- a/sysdeps/unix/sysv/linux/futimens.c +++ b/sysdeps/unix/sysv/linux/futimens.c @@ -45,5 +45,4 @@ futimens (int fd, const struct timespec tsp[2]) } #ifndef __NR_utimensat stub_warning (futimens) -# include <stub-tag.h> #endif diff --git a/sysdeps/unix/sysv/linux/lutimes.c b/sysdeps/unix/sysv/linux/lutimes.c index c26623262e..7e05a72a2b 100644 --- a/sysdeps/unix/sysv/linux/lutimes.c +++ b/sysdeps/unix/sysv/linux/lutimes.c @@ -54,5 +54,4 @@ lutimes (const char *file, const struct timeval tvp[2]) #ifndef __NR_utimensat stub_warning (lutimes) -# include <stub-tag.h> #endif diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c index f17a4949fa..f4a49c5c41 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c @@ -48,6 +48,4 @@ sync_file_range (int fd, __off64_t from, __off64_t to, unsigned int flags) return -1; } stub_warning (sync_file_range) - -# include <stub-tag.h> #endif diff --git a/sysdeps/unix/sysv/linux/readahead.c b/sysdeps/unix/sysv/linux/readahead.c index e7d0c110e6..439936741d 100644 --- a/sysdeps/unix/sysv/linux/readahead.c +++ b/sysdeps/unix/sysv/linux/readahead.c @@ -42,8 +42,6 @@ __readahead (int fd, off64_t offset, size_t count) return -1; } stub_warning (readahead) - -# include <stub-tag.h> #endif weak_alias (__readahead, readahead) diff --git a/sysdeps/unix/sysv/linux/sync_file_range.c b/sysdeps/unix/sysv/linux/sync_file_range.c index a7785298b4..551e900dad 100644 --- a/sysdeps/unix/sysv/linux/sync_file_range.c +++ b/sysdeps/unix/sysv/linux/sync_file_range.c @@ -74,6 +74,4 @@ sync_file_range (int fd, __off64_t from, __off64_t to, unsigned int flags) return -1; } stub_warning (sync_file_range) - -# include <stub-tag.h> #endif diff --git a/sysdeps/unix/sysv/linux/utimensat.c b/sysdeps/unix/sysv/linux/utimensat.c index f52e615dd1..fc1d362cea 100644 --- a/sysdeps/unix/sysv/linux/utimensat.c +++ b/sysdeps/unix/sysv/linux/utimensat.c @@ -45,5 +45,4 @@ utimensat (int fd, const char *file, const struct timespec tsp[2], } #ifndef __NR_utimensat stub_warning (utimensat) -# include <stub-tag.h> #endif |