diff options
Diffstat (limited to 'blob')
-rwxr-xr-x | blob | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,8 +18,8 @@ cat << EOF > "$base.h" #include <stddef.h> extern const char ${symbol_base}_head; -const char* ${symbol_base} = &${symbol_base}_head; -const size_t ${symbol_base}_size = $(wc -c < "$input"); +static const char* ${symbol_base} = &${symbol_base}_head; +static const size_t ${symbol_base}_size = $(wc -c < "$input"); EOF |