summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/prebuilt/wasm2c.include.c1
-rw-r--r--src/prebuilt/wasm2c.include.h1
-rw-r--r--src/wasm2c.c.tmpl1
-rw-r--r--src/wasm2c.h.tmpl1
-rwxr-xr-xsrc/wasm2c_tmpl.py2
5 files changed, 5 insertions, 1 deletions
diff --git a/src/prebuilt/wasm2c.include.c b/src/prebuilt/wasm2c.include.c
index b14cc435..d7b1df23 100644
--- a/src/prebuilt/wasm2c.include.c
+++ b/src/prebuilt/wasm2c.include.c
@@ -1,5 +1,6 @@
/* Generated from 'wasm2c.c.tmpl' by wasm2c_tmpl.py, do not edit! */
const char SECTION_NAME(includes)[] =
+"/* Automically generated by wasm2c */\n"
"#include <math.h>\n"
"#include <string.h>\n"
;
diff --git a/src/prebuilt/wasm2c.include.h b/src/prebuilt/wasm2c.include.h
index 23319cde..4ba24751 100644
--- a/src/prebuilt/wasm2c.include.h
+++ b/src/prebuilt/wasm2c.include.h
@@ -1,5 +1,6 @@
/* Generated from 'wasm2c.h.tmpl' by wasm2c_tmpl.py, do not edit! */
const char SECTION_NAME(top)[] =
+"/* Automically generated by wasm2c */\n"
"#ifdef __cplusplus\n"
"extern \"C\" {\n"
"#endif\n"
diff --git a/src/wasm2c.c.tmpl b/src/wasm2c.c.tmpl
index 2d188c77..4465cf9a 100644
--- a/src/wasm2c.c.tmpl
+++ b/src/wasm2c.c.tmpl
@@ -1,4 +1,5 @@
%%includes
+/* Automically generated by wasm2c */
#include <math.h>
#include <string.h>
%%declarations
diff --git a/src/wasm2c.h.tmpl b/src/wasm2c.h.tmpl
index ac51cde9..8478d81b 100644
--- a/src/wasm2c.h.tmpl
+++ b/src/wasm2c.h.tmpl
@@ -1,4 +1,5 @@
%%top
+/* Automically generated by wasm2c */
#ifdef __cplusplus
extern "C" {
#endif
diff --git a/src/wasm2c_tmpl.py b/src/wasm2c_tmpl.py
index af3b953e..0da117a8 100755
--- a/src/wasm2c_tmpl.py
+++ b/src/wasm2c_tmpl.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
#
# Copyright 2018 WebAssembly Community Group participants
#