diff options
author | stephan <stephan@noemail.net> | 2024-09-23 21:22:09 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2024-09-23 21:22:09 +0000 |
commit | 69cce89425b19d8e41ddfaefbe6bbe042cf3f116 (patch) | |
tree | 6a9c2ff5ab3d3a781cd727df6352e573a775ece6 /ext/wasm/c-pp.c | |
parent | d69b4249ffea7614e94ca23b0ca15a6ebec8972d (diff) | |
download | sqlite-69cce89425b19d8e41ddfaefbe6bbe042cf3f116.tar.gz sqlite-69cce89425b19d8e41ddfaefbe6bbe042cf3f116.zip |
wasm: replace much of the eval makefile spaghetti with equivalent code generated from a small C app. It turns out that's easier to read and write than doing the same thing from shell or tcl code, due entirely to C's lack of need for escaping dollar signs.
FossilOrigin-Name: 5440de48903e94f91090e2df65702ec0c504e33dd5cbd50f684cf30988f20b02
Diffstat (limited to 'ext/wasm/c-pp.c')
-rw-r--r-- | ext/wasm/c-pp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/wasm/c-pp.c b/ext/wasm/c-pp.c index c439a0d09..6815cb845 100644 --- a/ext/wasm/c-pp.c +++ b/ext/wasm/c-pp.c @@ -1,7 +1,8 @@ /* ** 2022-11-12: ** -** In place of a legal notice, here is a blessing: +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: ** ** * May you do good and not evil. ** * May you find forgiveness for yourself and forgive others. |