diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-27 19:53:56 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-27 19:53:56 +0000 |
commit | 5ab60f1ed6fddaf1a72ca577739d070fd8f6e6d4 (patch) | |
tree | 5698e3f0ced6556553ab71e824daacd829f580e4 /lib/libpthread | |
parent | 6beca5ad461c5e9851c3f2cc31681d251a046bff (diff) |
forward declaration of struct timespec to avoid warning
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/include/sched.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libpthread/include/sched.h b/lib/libpthread/include/sched.h index 46f8e9703d8..d41663680fc 100644 --- a/lib/libpthread/include/sched.h +++ b/lib/libpthread/include/sched.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sched.h,v 1.3 1999/11/25 07:01:29 d Exp $ */ +/* $OpenBSD: sched.h,v 1.4 2000/06/27 19:53:55 art Exp $ */ #ifndef _SCHED_H_ #define _SCHED_H_ @@ -68,6 +68,7 @@ int sched_getscheduler __P((pid_t)); int sched_yield __P((void)); int sched_get_priority_max __P((int)); int sched_get_priority_min __P((int)); +struct timespec; int sched_rr_get_interval __P((pid_t, struct timespec *)); __END_DECLS |