summaryrefslogtreecommitdiff
path: root/store/workben/t_leak.cxx
blob: 0ec6240fb7e4565b2afea089ac84960206cbe05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * 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;
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */