Have configure take arguments telling it where gmp is; fixes trac #957
[ghc-hetmet.git] / rts / Timer.c
index 8088600..493fe3d 100644 (file)
@@ -83,18 +83,18 @@ handle_tick(int unused STG_UNUSED)
 #endif
 }
 
-int
+void
 startTimer(void)
 {
 #ifdef PROFILING
   initProfTimer();
 #endif
 
-  return startTicker(RtsFlags.MiscFlags.tickInterval, handle_tick);
+  startTicker(RtsFlags.MiscFlags.tickInterval, handle_tick);
 }
 
-int
+void
 stopTimer(void)
 {
-  return stopTicker();
+  stopTicker();
 }