1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* posix.c (scm_getpgrp): Cast pointer to getpgrp.

This commit is contained in:
Mikael Djurfeldt 1996-08-20 17:10:18 +00:00
parent 8ba7a00bfe
commit 4625e44f7e

View file

@ -584,7 +584,7 @@ SCM
scm_getpgrp ()
{
int (*fn)();
fn = getpgrp;
fn = (int (*) ()) getpgrp;
return SCM_MAKINUM (fn (0));
}