From 04249148fb69b4a2aa693e3ea0c747a5be3dc20f Mon Sep 17 00:00:00 2001 From: Daniel Eischen Date: Fri, 24 May 2002 04:35:55 +0000 Subject: [PATCH] Reorder prototypes to be in alphabetical order. --- include/pthread_np.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/pthread_np.h b/include/pthread_np.h index 9b0462eb60ea..b49bd37388f3 100644 --- a/include/pthread_np.h +++ b/include/pthread_np.h @@ -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