summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/device-nrs.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-07-21 05:13:40 +0000
committerRoland McGrath <roland@gnu.org>2001-07-21 05:13:40 +0000
commit11c0b1e39ba31c9ab2731dcd846e2335f778a82e (patch)
treed4aaf3e17d513d0cdc63de32b3f851d876cfd417 /sysdeps/unix/sysv/linux/device-nrs.h
parentd3ab710cbc49c1bafbfe2dce84a3d9f80a2d8d62 (diff)
* sysdeps/generic/device-nrs.h (DEV_TTY_P): Change argument type
from `dev_t' (st_rdev value) `const struct stat *'. * sysdeps/unix/sysv/linux/device-nrs.h (DEV_TTY_P): Likewise. * libio/filedoalloc.c (_IO_file_doallocate): Change caller. * sysdeps/mach/hurd/device-nrs.h: New file.
Diffstat (limited to 'sysdeps/unix/sysv/linux/device-nrs.h')
-rw-r--r--sysdeps/unix/sysv/linux/device-nrs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/device-nrs.h b/sysdeps/unix/sysv/linux/device-nrs.h
index d08d81cf25..6b6578ec5f 100644
--- a/sysdeps/unix/sysv/linux/device-nrs.h
+++ b/sysdeps/unix/sysv/linux/device-nrs.h
@@ -35,8 +35,8 @@
#define DEV_TTY_HIGH_MAJOR 143
/* Test whether given device is a tty. */
-#define DEV_TTY_P(dev) \
- ({ int __dev_major = major (dev); \
+#define DEV_TTY_P(statp) \
+ ({ int __dev_major = major ((statp)->st_rdev); \
__dev_major >= DEV_TTY_LOW_MAJOR && __dev_major <= DEV_TTY_HIGH_MAJOR; })
#endif /* device-nrs.h */