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:
parent
8ba7a00bfe
commit
4625e44f7e
1 changed files with 1 additions and 1 deletions
|
@ -584,7 +584,7 @@ SCM
|
||||||
scm_getpgrp ()
|
scm_getpgrp ()
|
||||||
{
|
{
|
||||||
int (*fn)();
|
int (*fn)();
|
||||||
fn = getpgrp;
|
fn = (int (*) ()) getpgrp;
|
||||||
return SCM_MAKINUM (fn (0));
|
return SCM_MAKINUM (fn (0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue