Displaying 1 result from an estimated 1 matches for "r2853".
Did you mean:
2853
2011 Jan 26
1
[nut-commits] svn commit r2853 - in branches/windows_port: drivers include
...ranches/windows_port/include/wincompat.h
> ==============================================================================
> --- branches/windows_port/include/wincompat.h Wed Jan 26 15:05:16
> 2011 (r2852)
> +++ branches/windows_port/include/wincompat.h Wed Jan 26 15:16:09
> 2011 (r2853)
> @@ -28,6 +28,7 @@
> #include "common.h"
>
> #define sleep(n) Sleep(1000 * n)
> +#define strtok_r(a,b,c) strtok(a,b)
>
> /* Network compatibility */
You probably want to use
> +#define strtok_r(a,b,c) strtok_s(a,b,c)
here. I'm not sure that never tokeni...