xref: /haiku/src/system/libroot/posix/wchar/wcsftime.cpp (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2 ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved.
3 ** Distributed under the terms of the MIT License.
4 */
5 
6 #include <wchar_private.h>
7 
8 
9 extern "C" size_t
10 __wcsftime(wchar_t* wcs, size_t wcsSize, const wchar_t* format,
11 	const struct tm* time)
12 {
13 #error "not implemented";
14 
15 	return cmp;
16 }
17 
18 
19 extern "C"
20 B_DEFINE_WEAK_ALIAS(__wcsftime, wcsftime);
21