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