diff --git a/runtime.cc b/runtime.cc
index 45fd94ab62b3bd5768f794426f8a5adeb3fd6bc5..ea75e780e55f5292e79431c453e3060f9bf4abf7 100644
--- a/runtime.cc
+++ b/runtime.cc
@@ -34,6 +34,7 @@
 #include "smp.hh"
 #include "bsd/sys/sys/sysctl.h"
 #include <osv/power.hh>
+#include <sys/time.h>
 
 #define __LC_LAST 13
 
@@ -360,3 +361,9 @@ int get_nprocs()
 {
     return sysconf(_SC_NPROCESSORS_ONLN);
 }
+
+int utimes (const char *, const struct timeval [2])
+{
+    // FIXME This is just a stub
+    return 0;
+}