headers/bsd: Add sys/queue.h.
[haiku.git] / src / system / libroot / posix / time / timelocal.cpp
blobbfa62bbdc97f3830c1ed32478c1b0d7dee08fbc0
1 /*
2 * Copyright 2010, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
7 #include "timelocal.h"
9 #include <stddef.h>
11 #include "LocaleBackend.h"
12 #include "PosixLCTimeInfo.h"
15 using BPrivate::Libroot::gLocaleBackend;
18 extern "C" const lc_time_t*
19 __get_current_time_locale(void)
21 if (gLocaleBackend)
22 return gLocaleBackend->LCTimeInfo();
24 return &BPrivate::Libroot::gPosixLCTimeInfo;