summaryrefslogtreecommitdiffstats
path: root/posix.c
diff options
context:
space:
mode:
authorRob Browning <rlb@cs.utexas.edu>1997-12-12 17:29:42 -0600
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:24 -0800
commitf64b2806c1d66a1341bb8b1491f384169ab1d65f (patch)
tree8b97dbe3640c60927959b0e63461ef9fcae591e0 /posix.c
parent6dcb175d7f34d9f5a0b3ba623f94454ec16a73d6 (diff)
parent1edcb9b62a1a520eddae8403c19d841c9b18737f (diff)
downloadscm-f64b2806c1d66a1341bb8b1491f384169ab1d65f.tar.gz
scm-f64b2806c1d66a1341bb8b1491f384169ab1d65f.zip
Import Debian changes 5b3-1debian/5b3-1
scm (5b3-1) unstable; urgency=low * New maintainer * New version * libc6
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;
}