diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-09-09 13:01:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-09-09 13:01:27 +0200 |
commit | f842cd9e285afb9d86c6f9bff400e5e576f873c0 (patch) | |
tree | a538ea5e2599ffb0099d8318ced6c7bfa46ed7fa | |
parent | 64075b0ab18449132ed01a07874fe1d1f3f356d4 (diff) | |
download | vim-git-f842cd9e285afb9d86c6f9bff400e5e576f873c0.tar.gz |
patch 8.2.1640: Amiga: missing header for getgrgid()v8.2.1640
Problem: Amiga: missing header for getgrgid().
Solution: Add the grp.h header. (Ola Söder, closes #6906)
-rw-r--r-- | src/os_amiga.h | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/os_amiga.h b/src/os_amiga.h index 611555e3e..98f3cffde 100644 --- a/src/os_amiga.h +++ b/src/os_amiga.h @@ -91,6 +91,7 @@ typedef long off_t; # include <limits.h> # include <errno.h> # include <pwd.h> +# include <grp.h> # include <dirent.h> #endif diff --git a/src/version.c b/src/version.c index 26a66f077..4f7de313a 100644 --- 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, |