shill: Use integer types from stdint.h

This CL replaces the deprecated int* and uint* types from
'base/basictypes.h' with the int*_t and uint*_t types from 'stdint.h'.

BUG=chromium:401356
TEST=`USE='cellular gdmwimax wimax' FEATURES=test emerge-$BOARD platform2`

Change-Id: I3d4c195881203dd2a47dbb5af150b6c90b9c206e
Reviewed-on: https://chromium-review.googlesource.com/211770
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Commit-Queue: Ben Chan <benchan@chromium.org>
Tested-by: Ben Chan <benchan@chromium.org>
diff --git a/ndisc.h b/ndisc.h
index b845b24..4640bcd 100644
--- a/ndisc.h
+++ b/ndisc.h
@@ -16,10 +16,10 @@
   NDUserOptionHeader() {
     memset(this, 0, sizeof(*this));
   }
-  uint8 type;
-  uint8 length;
-  uint16 reserved;
-  uint32 lifetime;
+  uint8_t type;
+  uint8_t length;
+  uint16_t reserved;
+  uint32_t lifetime;
 } __attribute__((__packed__));
 
 // Neighbor Discovery user option type definition.