Commit 9b0d9af1 authored by unknown's avatar unknown

Fixed windows-specific warning about undeclared localtime_r() in my_time.c.

We have to include my_pthread.h since it is the place where localtime_r() is declared 
on platforms where this function is missing.


sql-common/my_time.c:
  We have to include my_pthread.h since it is the place where localtime_r() is declared 
  on platforms where this function is missing.
parent 93be0267
...@@ -17,6 +17,8 @@ ...@@ -17,6 +17,8 @@
#include <my_time.h> #include <my_time.h>
#include <m_string.h> #include <m_string.h>
#include <m_ctype.h> #include <m_ctype.h>
/* Windows version of localtime_r() is declared in my_ptrhead.h */
#include <my_pthread.h>
ulonglong log_10_int[20]= ulonglong log_10_int[20]=
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment