aboutsummaryrefslogtreecommitdiff
path: root/csolver.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 16:29:53 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 16:29:53 +0800
commit001a8e564d07088e7a8f0c32db1b33170e0a2e0c (patch)
treea627cd592e2af5a6e3b15a067c5e2c19fb3b7344 /csolver.go
parentNote the JS solver is extra slow (diff)
downloadpowxy-001a8e564d07088e7a8f0c32db1b33170e0a2e0c.tar.gz
powxy-001a8e564d07088e7a8f0c32db1b33170e0a2e0c.tar.zst
powxy-001a8e564d07088e7a8f0c32db1b33170e0a2e0c.zip
Remove extra newlines from tmpl and csolver
Diffstat (limited to 'csolver.go')
-rw-r--r--csolver.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/csolver.go b/csolver.go
index 3766ca4..c3beb6d 100644
--- a/csolver.go
+++ b/csolver.go
@@ -3,8 +3,7 @@
package main
-const solverProgram = `
-#include <openssl/evp.h>
+const solverProgram = `#include <openssl/evp.h>
#include <openssl/bio.h>
#include <openssl/buffer.h>
#include <stdbool.h>
@@ -179,5 +178,4 @@ int main(int argc, char **argv)
BIO_free_all(b64_out);
return 0;
-}
-`
+}`