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_client.h b/aos/network/sctp_client.h
index 6b84638..806026c 100644
--- a/aos/network/sctp_client.h
+++ b/aos/network/sctp_client.h
@@ -1,8 +1,8 @@
#ifndef AOS_NETWORK_SCTP_CLIENT_H_
#define AOS_NETWORK_SCTP_CLIENT_H_
-#include <stdio.h>
-#include <stdlib.h>
+#include <cstdio>
+#include <cstdlib>
#include <string_view>
#include "aos/network/sctp_lib.h"