]> git.saurik.com Git - apple/icu.git/blob - icuSources/common/mutex.cpp
ICU-400.42.tar.gz
[apple/icu.git] / icuSources / common / mutex.cpp
1 /**
2 *******************************************************************************
3 * Copyright (C) 2008, International Business Machines Corporation. *
4 * All Rights Reserved. *
5 *******************************************************************************
6 */
7
8 #include "unicode/utypes.h"
9
10 #if UCONFIG_NO_SERVICE
11
12 /* If UCONFIG_NO_SERVICE, then there is no invocation of Mutex elsewhere in
13 common, so add one here to force an export */
14 #include "mutex.h"
15 static Mutex *aMutex = 0;
16
17 /* UCONFIG_NO_SERVICE */
18 #endif