Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
POSIX.xs: avoid "defined but not used" warning
The static function not_here() is used for any methods that aren't implemented. On Linux at least, *all* methods are implemented, so you get: POSIX.xs:1639:1: warning: ‘not_here’ defined but not used [-Wunused-function] not_here(const char *s) Ensure at least one use of this function to avoid that warning. A bit hacky, but I couldn't think of a better way.
- Loading branch information