Skip to content
Snippets Groups Projects
Commit fa9a6d73 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

MRG

parents 56467511 5db285cb
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,17 @@ char* strptime(const char* buf, const char* format, struct tm* tm) {
return NULL;
}
#endif
#ifdef sun
time_t timegm(struct tm* tm) {
// Not yet implemented on this platform.
time_t not_implemented;
return not_implemented;
}
char* strptime(const char* buf, const char* format, struct tm* tm) {
// Not yet implemented on this platform.
return NULL;
}
#endif
namespace kmlbase {
......
......@@ -36,6 +36,10 @@
time_t timegm(struct tm* tm);
char* strptime(const char* buf, const char* format, struct tm* tm);
#endif
#ifdef sun
time_t timegm(struct tm* tm);
char* strptime(const char* buf, const char* format, struct tm* tm);
#endif
namespace kmlbase {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment