blob: d4d7b8a840e1083388efb46433a6d934f3553770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* t_leak.cxx
*/
#include "sal/main.h"
#include "osl/process.h"
#include "osl/thread.h"
int main (int /*argc*/, char ** /*argv*/)
//SAL_IMPLEMENT_MAIN()
{
rtl_Locale * pLocale = 0;
osl_getProcessLocale (&pLocale);
#if 0
rtl_TextEncoding te = osl_getThreadTextEncoding();
(void) te;
#endif
return 0;
}
|