minor cleanup: remove unused c header

Change-Id: I562aad32f8b860fc954773428e6a929759c694d3
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/timer.cpp b/timer.cpp
index a99ec46..72c9f96 100644
--- a/timer.cpp
+++ b/timer.cpp
@@ -1,8 +1,7 @@
 #include "timer.hpp"
 
-#include <string.h>
-
 #include <chrono>
+#include <cstring>
 #include <system_error>
 
 namespace phosphor
@@ -30,7 +29,7 @@
                                this);          // User data
     if (r < 0)
     {
-        throw std::system_error(r, std::generic_category(), strerror(-r));
+        throw std::system_error(r, std::generic_category(), std::strerror(-r));
     }
 }
 
@@ -45,12 +44,14 @@
             eventSource, (getTime() + timer->getDuration()).count());
         if (r < 0)
         {
-            throw std::system_error(r, std::generic_category(), strerror(-r));
+            throw std::system_error(r, std::generic_category(),
+                                    std::strerror(-r));
         }
         r = sd_event_source_set_enabled(eventSource, timer::ON);
         if (r < 0)
         {
-            throw std::system_error(r, std::generic_category(), strerror(-r));
+            throw std::system_error(r, std::generic_category(),
+                                    std::strerror(-r));
         }
     }