sqlite3_solaris.go 294 B

12345678910111213141516
  1. // Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
  2. //
  3. // Use of this source code is governed by an MIT-style
  4. // license that can be found in the LICENSE file.
  5. //go:build solaris
  6. // +build solaris
  7. package sqlite3
  8. /*
  9. #cgo CFLAGS: -D__EXTENSIONS__=1
  10. #cgo LDFLAGS: -lc
  11. */
  12. import "C"