summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/itimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/itimer.c')
-rw-r--r--otherlibs/unix/itimer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/unix/itimer.c b/otherlibs/unix/itimer.c
index 472510f0d..b3e298afc 100644
--- a/otherlibs/unix/itimer.c
+++ b/otherlibs/unix/itimer.c
@@ -37,7 +37,7 @@ static value unix_convert_itimer(struct itimerval *tp)
static int itimers[3] = { ITIMER_REAL, ITIMER_VIRTUAL, ITIMER_PROF };
-value unix_setitimer(value which, value newval)
+value unix_setitimer(value which, value newval) /* ML */
{
struct itimerval new, old;
Set_timeval(new.it_interval, Double_field(newval, 0));
@@ -47,7 +47,7 @@ value unix_setitimer(value which, value newval)
return unix_convert_itimer(&old);
}
-value unix_getitimer(value which)
+value unix_getitimer(value which) /* ML */
{
struct itimerval val;
if (getitimer(itimers[Int_val(which)], &val) == -1)