1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Protect prototype of ptrace_clear_single_step() with #ifdef _KERNEL/#endif.

Requested by:	bde
This commit is contained in:
John Baldwin 2001-08-21 13:42:39 +00:00
parent d721b5de59
commit a71c43dd2b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=82061

View File

@ -47,6 +47,8 @@
#define FIX_SSTEP(p) ptrace_clear_single_step(p)
#ifdef _KERNEL
int ptrace_clear_single_step(struct proc *_p);
#endif
#endif