Add C++ support.

Submitted by: Russell L. Carter <rcarter@pinyon.org>
              fixes omniORB25 built with g++-2.8.1 on -current
This commit is contained in:
John Birrell 1998-05-12 05:11:51 +00:00
parent e2039ecbff
commit 56594472c0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35959

View file

@ -57,6 +57,7 @@ struct sched_param
#ifndef KERNEL
#include <sys/cdefs.h>
__BEGIN_DECLS
int sched_setparam __P((pid_t, const struct sched_param *));
int sched_getparam __P((pid_t, struct sched_param *));
@ -67,6 +68,7 @@ int sched_yield __P((void));
int sched_get_priority_max __P((int));
int sched_get_priority_min __P((int));
int sched_rr_get_interval __P((pid_t, struct timespec *));
__END_DECLS
#endif /* KERNEL */