Reorder prototypes to be in alphabetical order.

This commit is contained in:
Daniel Eischen 2002-05-24 04:35:55 +00:00
parent 9de68a9f4c
commit 04249148fb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97206

View file

@ -44,18 +44,18 @@ typedef void (*pthread_switch_routine_t)(pthread_t, pthread_t);
*/
__BEGIN_DECLS
int pthread_attr_setcreatesuspend_np(pthread_attr_t *);
int pthread_main_np(void);
int pthread_multi_np(void);
int pthread_mutexattr_getkind_np(pthread_mutexattr_t);
int pthread_mutexattr_setkind_np(pthread_mutexattr_t *, int);
int pthread_resume_all_np(void);
int pthread_resume_np(pthread_t);
void pthread_set_name_np(pthread_t, const char *);
int pthread_single_np(void);
int pthread_suspend_all_np(void);
int pthread_suspend_np(pthread_t);
int pthread_mutexattr_getkind_np(pthread_mutexattr_t);
int pthread_mutexattr_setkind_np(pthread_mutexattr_t *, int);
void pthread_set_name_np(pthread_t, const char *);
int pthread_switch_add_np(pthread_switch_routine_t);
int pthread_switch_delete_np(pthread_switch_routine_t);
int pthread_main_np(void);
__END_DECLS
#endif