office-gobmx/store/workben/t_leak.cxx
2010-10-18 16:25:47 +01:00

18 lines
378 B
C++

/* -*- 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);
return 0;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */