1*4f585c7eSguenther /* $OpenBSD: ktrace.h,v 1.1 2023/05/18 16:07:12 guenther Exp $ */ 2*4f585c7eSguenther /* 3*4f585c7eSguenther * Copyright (c) 2023 Philip Guenther <guenther@openbsd.org> 4*4f585c7eSguenther * 5*4f585c7eSguenther * Permission to use, copy, modify, and distribute this software for any 6*4f585c7eSguenther * purpose with or without fee is hereby granted, provided that the above 7*4f585c7eSguenther * copyright notice and this permission notice appear in all copies. 8*4f585c7eSguenther * 9*4f585c7eSguenther * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10*4f585c7eSguenther * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11*4f585c7eSguenther * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12*4f585c7eSguenther * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13*4f585c7eSguenther * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14*4f585c7eSguenther * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15*4f585c7eSguenther * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16*4f585c7eSguenther */ 17*4f585c7eSguenther 18*4f585c7eSguenther #ifndef _LIBC_SYS_KTRACE_H_ 19*4f585c7eSguenther #define _LIBC_SYS_KTRACE_H_ 20*4f585c7eSguenther 21*4f585c7eSguenther #include_next <sys/ktrace.h> 22*4f585c7eSguenther 23*4f585c7eSguenther PROTO_NORMAL(ktrace); 24*4f585c7eSguenther PROTO_NORMAL(utrace); 25*4f585c7eSguenther 26*4f585c7eSguenther #endif /* !_LIBC_SYS_KTRACE_H_ */ 27