diff lib/pthread.in.h @ 13479:8a0b8adde2be

Use spaces for indentation, not tabs.
author Bruno Haible <bruno@clisp.org>
date Wed, 28 Jul 2010 10:08:37 +0200
parents b3e78c51aab6
children b236a91e37b9
line wrap: on
line diff
--- a/lib/pthread.in.h
+++ b/lib/pthread.in.h
@@ -100,7 +100,7 @@
 
 static inline int
 pthread_cond_init (pthread_cond_t *restrict cond,
-		   pthread_condattr_t const *restrict attr)
+                   pthread_condattr_t const *restrict attr)
 {
   /* COND is never seriously used.  */
   return 0;
@@ -115,7 +115,7 @@
 
 static inline int
 pthread_cond_wait (pthread_cond_t *restrict cond,
-		   pthread_mutex_t *restrict mutex)
+                   pthread_mutex_t *restrict mutex)
 {
   /* Properly-written applications never come here.  */
   abort ();
@@ -155,7 +155,7 @@
 
 static inline int
 pthread_mutex_init (pthread_mutex_t *restrict mutex,
-		    pthread_mutexattr_t const *restrict attr)
+                    pthread_mutexattr_t const *restrict attr)
 {
   /* MUTEX is never seriously used.  */
   return 0;