summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-02-10 21:35:06 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-02-10 21:48:22 -0700
commitddffd7b78d81f1b47b5829eb9ff0aa1887cc3b17 (patch)
tree7733466fac856d93bfb6d6100fd703830a915567 /internal
parent3516254a492758dd414b271b85a1603fd53cebad (diff)
Use go:linkname instead of the awful internal/jsontest package
Diffstat (limited to 'internal')
-rw-r--r--internal/jsontest/jsontest.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/internal/jsontest/jsontest.go b/internal/jsontest/jsontest.go
deleted file mode 100644
index fbc775d..0000000
--- a/internal/jsontest/jsontest.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com>
-//
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-package jsontest
-
-import (
- "io"
-)
-
-var (
- EncodeStringFromBytes func(io.Writer, []byte)
- EncodeStringFromString func(io.Writer, string)
-)