Merge pull request #564 from spongehah/refactor/c-libuv-remove-go-wrapper

refactor(c-libuv): Separate third-party libraries from standard libraries
This commit is contained in:
xushiwei
2024-07-26 10:04:31 +08:00
committed by GitHub
6 changed files with 12 additions and 6 deletions

View File

@@ -1,10 +1,11 @@
package libuv
import (
_ "unsafe"
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/net"
"github.com/goplus/llgo/c/syscall"
_ "unsafe"
)
const (

View File

@@ -1,8 +1,9 @@
package libuv
import (
"github.com/goplus/llgo/c"
_ "unsafe"
"github.com/goplus/llgo/c"
)
const (

View File

@@ -1,9 +1,10 @@
package libuv
import (
_ "unsafe"
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/net"
_ "unsafe"
)
const (

View File

@@ -1,9 +1,10 @@
package libuv
import (
_ "unsafe"
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/net"
_ "unsafe"
)
const (

View File

@@ -1,8 +1,9 @@
package libuv
import (
"github.com/goplus/llgo/c"
_ "unsafe"
"github.com/goplus/llgo/c"
)
/* Handle types. */

View File

@@ -1,8 +1,9 @@
package libuv
import (
"github.com/goplus/llgo/c"
_ "unsafe"
"github.com/goplus/llgo/c"
)
// ----------------------------------------------