1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Make a few constant globals actually const.

This means the .data and .bss sections are empty, a good thing
in a shared library (see #98).
This commit is contained in:
Stephen Dolan
2013-05-05 22:37:46 +01:00
parent ab1a97472c
commit 47e015e946
5 changed files with 13 additions and 16 deletions

View File

@@ -7,6 +7,7 @@
struct bytecode;
struct symbol_table;
struct cfunction;
struct inst;
typedef struct inst inst;
@@ -41,7 +42,7 @@ block gen_or(block a, block b);
block gen_cond(block cond, block iftrue, block iffalse);
block gen_cbinding(struct symbol_table* functions, block b);
block gen_cbinding(const struct cfunction* functions, int nfunctions, block b);
void block_append(block* b, block b2);
block block_join(block a, block b);