1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Protect the function declarations with #ifdef _KERNEL.

This commit is contained in:
Olivier Houchard 2004-11-04 19:20:54 +00:00
parent 56c6c84155
commit 6e91e74e11
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=137229

View File

@ -22,11 +22,13 @@ struct dbreg {
unsigned int dr[8]; /* debug registers */
};
#ifdef _KERNEL
int fill_regs(struct thread *, struct reg *);
int set_regs(struct thread *, struct reg *);
int fill_fpregs(struct thread *, struct fpreg *);
int set_fpregs(struct thread *, struct fpreg *);
int fill_dbregs(struct thread *, struct dbreg *);
int set_dbregs(struct thread *, struct dbreg *);
#endif
#endif /* !MACHINE_REG_H */