aboutsummaryrefslogtreecommitdiff
path: root/blob
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-05-16 19:13:05 +0200
committerlonkaars <loek@pipeframe.xyz>2024-05-16 19:13:05 +0200
commit07b820f4575d2108b5675106d3ea16e83c168c22 (patch)
treef886e2089aea67ae18a9ec24c976685b00e006e2 /blob
parent107684b00d65eac84e4bf2dfd34073d309230d50 (diff)
clean up garbage code i wrote 5 minutes ago
Diffstat (limited to 'blob')
-rwxr-xr-xblob4
1 files changed, 2 insertions, 2 deletions
diff --git a/blob b/blob
index 6baae9c..e0f4b4c 100755
--- a/blob
+++ b/blob
@@ -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