1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

scm_usleep: Don't define j if not used.

This commit is contained in:
Mikael Djurfeldt 1998-05-11 01:17:10 +00:00
parent 0d7588d20a
commit 5e334bd3a0

View file

@ -366,7 +366,9 @@ SCM
scm_usleep (i)
SCM i;
{
#ifndef USLEEP_RETURNS_VOID
int j;
#endif
SCM_ASSERT (SCM_INUMP (i) && (SCM_INUM (i) >= 0), i, SCM_ARG1, s_usleep);
#ifdef USLEEP_RETURNS_VOID
usleep (SCM_INUM (i));