]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/kern/subr_xxx.c
xnu-792.tar.gz
[apple/xnu.git] / bsd / kern / subr_xxx.c
index 503401a6c0ca1417b8f36b711742dfbfef8fe50a..393c071426700baeae4b21f1f552b185c0016154 100644 (file)
@@ -58,8 +58,7 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/conf.h>
-#include <sys/buf.h>
-#include <sys/proc.h>
+#include <sys/proc_internal.h>
 #include <sys/vnode.h>
 #include <sys/uio.h>
 
@@ -114,11 +113,13 @@ enosys()
 /*
  * Return error for operation not supported
  * on a specific object or file type.
+ *
+ * XXX Name of this routine is wrong.
  */
 int
 eopnotsupp()
 {
-       return (EOPNOTSUPP);
+       return (ENOTSUP);
 }
 
 /*