# HG changeset patch # User Bram Moolenaar # Date 1599650104 -7200 # Node ID 4aa525b44ff249deb9545117e09ecac1223bee57 # Parent 774f66d748c9c727c38d8e5f755ca63a3f7705ec patch 8.2.1640: Amiga: missing header for getgrgid() Commit: https://github.com/vim/vim/commit/f842cd9e285afb9d86c6f9bff400e5e576f873c0 Author: Bram Moolenaar Date: Wed Sep 9 13:01:27 2020 +0200 patch 8.2.1640: Amiga: missing header for getgrgid() Problem: Amiga: missing header for getgrgid(). Solution: Add the grp.h header. (Ola S?der, closes https://github.com/vim/vim/issues/6906) diff --git a/src/os_amiga.h b/src/os_amiga.h --- a/src/os_amiga.h +++ b/src/os_amiga.h @@ -91,6 +91,7 @@ typedef long off_t; # include # include # include +# include # include #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1640, +/**/ 1639, /**/ 1638,