Move PAGE_MASK into <sys/user.h>.

I'm removing the TODO on the assumption that being compatible with glibc
is more useful than BSD. The new internal "bionic_page.h" header factors
out some duplication between libc and the linker.

Bug: http://b/22735893
Change-Id: I4aec4dcba5886fb6f6b9290a8f85660643261321
diff --git a/libc/include/sys/user.h b/libc/include/sys/user.h
index d63fe6a..12af664 100644
--- a/libc/include/sys/user.h
+++ b/libc/include/sys/user.h
@@ -35,6 +35,9 @@
 
 __BEGIN_DECLS
 
+#define PAGE_SIZE 4096
+#define PAGE_MASK (~(PAGE_SIZE - 1))
+
 #if __i386__
 
 struct user_fpregs_struct {