summaryrefslogtreecommitdiff
path: root/src/binary-reader-interpreter.cc
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-05-11 22:09:38 -0700
committerGitHub <noreply@github.com>2017-05-11 22:09:38 -0700
commita220185a7adc14251d86fb8d22141f5596f8ed30 (patch)
treee787ff65bfc79e01c07a53dbe3178dbde8c3dc27 /src/binary-reader-interpreter.cc
parent84c25f09386baca162a60eb8398542182d45e5c6 (diff)
downloadwabt-a220185a7adc14251d86fb8d22141f5596f8ed30.tar.gz
wabt-a220185a7adc14251d86fb8d22141f5596f8ed30.tar.bz2
wabt-a220185a7adc14251d86fb8d22141f5596f8ed30.zip
Use C++ style C headers (e.g. <cstdlib>) (#431)
Diffstat (limited to 'src/binary-reader-interpreter.cc')
-rw-r--r--src/binary-reader-interpreter.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/binary-reader-interpreter.cc b/src/binary-reader-interpreter.cc
index d4153edd..95508acc 100644
--- a/src/binary-reader-interpreter.cc
+++ b/src/binary-reader-interpreter.cc
@@ -16,11 +16,10 @@
#include "binary-reader-interpreter.h"
-#include <assert.h>
-#include <inttypes.h>
-#include <stdarg.h>
-#include <stdio.h>
-
+#include <cassert>
+#include <cinttypes>
+#include <cstdarg>
+#include <cstdio>
#include <vector>
#include "binary-error-handler.h"