s/size_t/std::size_t/g - for compatibility with other builds

For compatibility with the Google3 build system, use std::size_t instead
of gnu size_t.

Change-Id: Ie361de9c507119aa7db93d24b6e199547bd123af
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/tools/blob_handler.cpp b/tools/blob_handler.cpp
index 42098cc..486f133 100644
--- a/tools/blob_handler.cpp
+++ b/tools/blob_handler.cpp
@@ -73,7 +73,7 @@
         return reply;
     }
 
-    size_t headerSize = ipmiPhosphorOen.size() + sizeof(std::uint16_t);
+    std::size_t headerSize = ipmiPhosphorOen.size() + sizeof(std::uint16_t);
 
     /* This cannot be a response because it's smaller than the smallest
      * response.
diff --git a/tools/crc.cpp b/tools/crc.cpp
index e8083eb..d6f59ef 100644
--- a/tools/crc.cpp
+++ b/tools/crc.cpp
@@ -15,9 +15,9 @@
     const int kExtraRounds = 2;
     const std::uint8_t* bytes = data.data();
     std::uint16_t crc = 0xFFFF;
-    size_t i;
-    size_t j;
-    size_t size = data.size();
+    std::size_t i;
+    std::size_t j;
+    std::size_t size = data.size();
 
     for (i = 0; i < size + kExtraRounds; ++i)
     {