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

Add prototypes for the userland gmon support functions, which normally

live in src/lib/libc/gmon/gmon.c. glibc puts these prototypes in the same
header, so put them here for the sake of consistency.

PR:		bin/4459
Reviewed by:	bde
This commit is contained in:
Bruce M Simpson 2004-06-14 18:39:28 +00:00
parent 3b7f737e69
commit 58f77491e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130484

View File

@ -228,6 +228,15 @@ void mexitcount(uintfptr_t selfpc);
void nullfunc(void);
void nullfunc_loop(void);
#else /* !_KERNEL */
#include <sys/cdefs.h>
__BEGIN_DECLS
void moncontrol(int);
void monstartup(u_long, u_long);
__END_DECLS
#endif /* _KERNEL */
#endif /* !_SYS_GMON_H_ */