]> git.saurik.com Git - apple/icu.git/blame - icuSources/common/mutex.cpp
ICU-400.37.tar.gz
[apple/icu.git] / icuSources / common / mutex.cpp
CommitLineData
46f4442e
A
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"
15static Mutex *aMutex = 0;
16
17/* UCONFIG_NO_SERVICE */
18#endif