Replace use of deprecated C Standard library headers in C++ code.
Change-Id: I9fa6630c7e4bdb2897df34d417635d8c7d8253bc
Signed-off-by: Tyler Chatow <tchatow@gmail.com>
diff --git a/frc971/wpilib/dma.h b/frc971/wpilib/dma.h
index 6d82af8..46e1f71 100644
--- a/frc971/wpilib/dma.h
+++ b/frc971/wpilib/dma.h
@@ -4,9 +4,8 @@
// Interface to the roboRIO FPGA's DMA features.
// TODO(Brian): Make this less wpilib-like and more frc971-like.
-#include <stdint.h>
-
#include <array>
+#include <cstdint>
#include <memory>
#include "hal/ChipObject.h"