misc1.c:2114:2: warning: call to undeclared function 'setpwent'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
setpwent();
^
misc1.c:2115:15: warning: call to undeclared function 'getpwent'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
while ((pw = getpwent()) != NULL)
^
misc1.c:2115:13: error: incompatible integer to pointer conversion assigning to 'struct passwd *' from 'int' [-Wint-conversion]
while ((pw = getpwent()) != NULL)
^ ~~~~~~~~~~
2 warnings and 1 error generated.
make[1]: *** [Makefile:3349: objects/misc1.o] Error 1
make[1]: Leaving directory '/data/data/com.termux/files/home/vim/src'
make: *** [Makefile:29: first] Error 2