• Show log

    Commit

  • Hash : a33deeb4
    Author : Edward Thomson
    Date : 2018-02-28T12:20:23

    win32: strncmp -> git__strncmp
    
    The win32 C library is compiled cdecl, however when configured with
    `STDCALL=ON`, our functions (and function pointers) will use the stdcall
    calling convention.  You cannot set a `__stdcall` function pointer to a
    `__cdecl` function, so it's easier to just use our `git__strncmp`
    instead of sorting that mess out.