2021-08-29 16:41:41 +02:00
|
|
|
// Copyright 2020 The Libc Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-09-08 22:12:23 +02:00
|
|
|
//go:build !libc.dmesg
|
2021-08-29 16:41:41 +02:00
|
|
|
// +build !libc.dmesg
|
|
|
|
|
|
|
|
package libc // import "modernc.org/libc"
|
|
|
|
|
|
|
|
const dmesgs = false
|
|
|
|
|
|
|
|
func dmesg(s string, args ...interface{}) {}
|