am e6e2ba1d: Merge "libc: <pthread.h>: Replace \'#if __cplusplus\' by \'#ifdef __cplusplus\'"

* commit 'e6e2ba1d40241c85de16d75cbd397cc3670d7535':
  libc: <pthread.h>: Replace '#if __cplusplus' by '#ifdef __cplusplus'
This commit is contained in:
David 'Digit' Turner 2011-03-11 11:12:11 -08:00 committed by Android Git Automerger
commit b299039d06

View File

@ -103,7 +103,7 @@ typedef volatile int pthread_once_t;
/*
* Prototypes
*/
#if __cplusplus
#ifdef __cplusplus
extern "C" {
#endif
@ -302,7 +302,7 @@ extern void __pthread_cleanup_pop(__pthread_cleanup_t* c,
__pthread_cleanup_pop( &__cleanup, (execute)); \
} while (0);
#if __cplusplus
#ifdef __cplusplus
} /* extern "C" */
#endif