aboutsummaryrefslogtreecommitdiffstats
path: root/posix.c
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:24 -0800
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:24 -0800
commit1edcb9b62a1a520eddae8403c19d841c9b18737f (patch)
treebc0a43d9b3905726a76ed6f0528b54275f23d082 /posix.c
parent5ca6e8e6a4e5c022a6fb5d28f30219c22c99eda8 (diff)
downloadscm-1edcb9b62a1a520eddae8403c19d841c9b18737f.tar.gz
scm-1edcb9b62a1a520eddae8403c19d841c9b18737f.zip
Import Upstream version 5b3upstream/5b3
Diffstat (limited to 'posix.c')
-rw-r--r--posix.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/posix.c b/posix.c
index 422d61d..77cfaf4 100644
--- a/posix.c
+++ b/posix.c
@@ -47,11 +47,17 @@
#include <pwd.h>
#include <sys/types.h>
#include <sys/wait.h>
+/* added by Denys Duchier: for kill */
+#include <signal.h>
#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 <unistd.h>
+# 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;
}