diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-11 10:20:05 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-01-03 11:02:11 -0800 |
commit | e4cba31313b44e40efcc0c260a33c3ec83e4b772 (patch) | |
tree | f88f0604ed180b6a0cccdcfd48da85fac30b9eac /parseutils.c | |
parent | 3e486c4578f3f6a81fc0f9afba6551dfa8c7b63b (diff) |
Stop building more unused functions
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'parseutils.c')
-rw-r--r-- | parseutils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/parseutils.c b/parseutils.c index 3ae7de0..fc0838b 100644 --- a/parseutils.c +++ b/parseutils.c @@ -519,6 +519,7 @@ KeyDeclCreate(char *name, ExprDef * expr) return key; } +#if 0 KeyDef * KeyDeclMerge(KeyDef * into, KeyDef * from) { @@ -528,6 +529,7 @@ KeyDeclMerge(KeyDef * into, KeyDef * from) free(from); return into; } +#endif RowDef * RowDeclCreate(KeyDef * keys) |