1999-08-16 21:50:52 +00:00
|
|
|
/*
|
1999-12-09 23:27:55 +00:00
|
|
|
**********************************************************************
|
2002-07-25 15:25:44 +00:00
|
|
|
* Copyright (C) 1997-2002, International Business Machines
|
1999-12-09 23:27:55 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*/
|
|
|
|
|
2003-08-05 01:25:54 +00:00
|
|
|
// C++ static initialization.
|
|
|
|
//
|
|
|
|
// The purpose of this C++ file is to trigger the calling of
|
|
|
|
// u_ICUStaticInitFunc() during static initialization.
|
|
|
|
// (The function itself is in ucln_cmn.c, along with the rest
|
|
|
|
// of ICU's initialization and clean up code.)
|
|
|
|
//
|
2003-06-06 22:50:26 +00:00
|
|
|
#include "ucln_cmn.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2003-08-05 01:25:54 +00:00
|
|
|
static UBool initializesGlobalMutex = u_ICUStaticInitFunc();
|
2001-08-30 17:09:43 +00:00
|
|
|
|
2002-07-25 15:25:44 +00:00
|
|
|
|