fd_scm           3728 src/extlib.c     ScmObj fd_scm;
fd_scm           3738 src/extlib.c     fd_scm = SCM_ARGREF(0);
fd_scm           3739 src/extlib.c     if (!SCM_INTP(fd_scm)) Scm_Error("small integer required, but got %S", fd_scm);
fd_scm           3740 src/extlib.c     fd = SCM_INT_VALUE(fd_scm);
fd_scm           3760 src/extlib.c     ScmObj fd_scm;
fd_scm           3770 src/extlib.c     fd_scm = SCM_ARGREF(0);
fd_scm           3771 src/extlib.c     if (!SCM_INTP(fd_scm)) Scm_Error("small integer required, but got %S", fd_scm);
fd_scm           3772 src/extlib.c     fd = SCM_INT_VALUE(fd_scm);
fd_scm           2213 src/syslib.c     ScmObj fd_scm;
fd_scm           2216 src/syslib.c     fd_scm = SCM_ARGREF(0);
fd_scm           2217 src/syslib.c     if (!SCM_EXACTP(fd_scm)) Scm_Error("C integer required, but got %S", fd_scm);
fd_scm           2218 src/syslib.c     fd = Scm_GetInteger(fd_scm);