From 1edcb9b62a1a520eddae8403c19d841c9b18737f Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 20 Feb 2017 00:05:24 -0800 Subject: Import Upstream version 5b3 --- posix.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'posix.c') diff --git a/posix.c b/posix.c index 422d61d..77cfaf4 100644 --- a/posix.c +++ b/posix.c @@ -47,11 +47,17 @@ #include #include #include +/* added by Denys Duchier: for kill */ +#include #ifndef STDC_HEADERS char *ttyname P((int fd)); FILE *popen P((const char* command, const char* type)); int pclose P((FILE* stream)); +#else /* added by Denys Duchier */ +# ifdef SVR4 +# include +# endif #endif /* Only the superuser can successfully execute this call */ @@ -158,7 +164,7 @@ SCM scm_getgroups() scm_s_getgroups); int val = getgroups(ngroups, groups); if (val < 0) { - must_free(groups); + must_free((char *)groups); ALLOW_INTS; return BOOL_F; } -- cgit v1.2.3