changeset 2977:dac0392e12a8

(ENOTSUP): Define to EINVAL if not defined.
author Jim Meyering <jim@meyering.net>
date Fri, 10 Nov 2000 08:46:19 +0000
parents 521bfa14dd5a
children 1307ef16c7f1
files lib/unicodeio.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib/unicodeio.c	Fri Nov 10 08:44:51 2000 +0000
+++ b/lib/unicodeio.c	Fri Nov 10 08:46:19 2000 +0000
@@ -38,6 +38,9 @@
 #ifndef errno
 extern int errno;
 #endif
+#ifndef ENOTSUP
+# define ENOTSUP EINVAL
+#endif
 
 #if HAVE_LIMITS_H
 # include <limits.h>