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/aos/network/sctp_server.cc b/aos/network/sctp_server.cc
index 537f3ab..47a5719 100644
--- a/aos/network/sctp_server.cc
+++ b/aos/network/sctp_server.cc
@@ -5,10 +5,11 @@
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/sctp.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
#include <sys/socket.h>
+
+#include <cstdio>
+#include <cstdlib>
+#include <cstring>
#include <memory>
#include <thread>