diff options
author | Rob Browning <rlb@cs.utexas.edu> | 1997-12-12 17:29:42 -0600 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:24 -0800 |
commit | f64b2806c1d66a1341bb8b1491f384169ab1d65f (patch) | |
tree | 8b97dbe3640c60927959b0e63461ef9fcae591e0 /posix.c | |
parent | 6dcb175d7f34d9f5a0b3ba623f94454ec16a73d6 (diff) | |
parent | 1edcb9b62a1a520eddae8403c19d841c9b18737f (diff) | |
download | scm-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.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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; } |