Return true if ERR is ENOTSUP or EOPNOTSUPP, otherwise false. This wrapper function avoids the redundant 'or'd comparison on systems like Linux for which they have the same value. It also avoids the gcc warning to that effect. */
| 985 | systems like Linux for which they have the same value. It also |
| 986 | avoids the gcc warning to that effect. */ |
| 987 | static inline bool |
| 988 | is_ENOTSUP (int err) |
| 989 | { |
| 990 | return err == EOPNOTSUPP || (ENOTSUP != EOPNOTSUPP && err == ENOTSUP); |
| 991 | } |
| 992 | |
| 993 | |
| 994 | /* How coreutils quotes filenames, to minimize use of outer quotes, |
no outgoing calls
no test coverage detected