* system.h (S_ISBLK): Provide fallback definition.

From-SVN: r33710
This commit is contained in:
Philippe De Muyter 2000-05-05 18:27:45 +02:00 committed by Jeff Law
parent eda3fbbe7a
commit be3dad6f75
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Fri May 5 10:27:06 2000 Philippe De Muyter <phdm@macqel.be>
* system.h (S_ISBLK): Provide fallback definition.
2000-05-05 Geoff Berry <geoffb@bops.com>
* extend.texi (Extended Asm): Document inability to give asm

View File

@ -478,6 +478,11 @@ extern void abort PARAMS ((void));
#define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
#endif
/* Test if something is a block special file. */
#ifndef S_ISBLK
#define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
#endif
/* Test if something is a socket. */
#ifndef S_ISSOCK
# ifdef S_IFSOCK