mirror of
https://github.com/make-42/xyosc
synced 2025-01-19 11:07:35 +01:00
17 lines
292 B
Go
17 lines
292 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2022 The Ebitengine Authors
|
|
|
|
//go:build !cgo
|
|
|
|
package fakecgo
|
|
|
|
type (
|
|
pthread_cond_t uintptr
|
|
pthread_mutex_t uintptr
|
|
)
|
|
|
|
var (
|
|
PTHREAD_COND_INITIALIZER = pthread_cond_t(0)
|
|
PTHREAD_MUTEX_INITIALIZER = pthread_mutex_t(0)
|
|
)
|