Added sparse file support

This commit is contained in:
Eduard Urbach 2025-05-23 19:35:52 +02:00
parent 2e00b28016
commit dc315b8076
Signed by: eduard
GPG key ID: 49226B848C78F6C8
10 changed files with 32 additions and 37 deletions

View file

@ -1,12 +1,12 @@
package macho_test
import (
"io"
"testing"
"git.urbach.dev/cli/q/src/macho"
"git.urbach.dev/cli/q/src/test"
)
func TestWrite(t *testing.T) {
macho.Write(io.Discard, nil, nil)
macho.Write(&test.Discard{}, nil, nil)
}