platform.h: define endgrent() and endpwent() as no-ops on Android
[platform/upstream/busybox.git] / include / platform.h
index d79cc97..7451fb7 100644 (file)
@@ -334,6 +334,11 @@ typedef unsigned smalluint;
 # define MAXSYMLINKS SYMLOOP_MAX
 #endif
 
+#if defined(ANDROID) || defined(__ANDROID__)
+# define endpwent() ((void)0)
+# define endgrent() ((void)0)
+#endif
+
 
 /* ---- Who misses what? ------------------------------------ */