#ifndef SUS_ERRNO_ENOTSUP_H
#define SUS_ERRNO_ENOTSUP_H

#include <errno.h>	/* EOPNOTSUPP ENOTSUP EINVAL */


#if !defined ENOTSUP
#if defined EOPNOTSUPP
#define ENOTSUP		EOPNOTSUPP
#else
#define ENOTSUP		EINVAL
#endif
#endif /* !defined ENOTSUP */


#endif /* !SUS_ERRNO_ENOTSUP_H */


syntax highlighted by Code2HTML, v. 0.9.1