Skip to content

Commit

Permalink
mystrverscmp: fix include
Browse files Browse the repository at this point in the history
  • Loading branch information
leahneukirchen committed Jul 26, 2016
1 parent 0d2b19f commit 7f2d916
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mystrverscmp.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include <sys/types.h>
// taken straight from musl@a593414

/*
Expand All @@ -24,6 +23,9 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include <ctype.h>
#include <string.h>

int mystrverscmp(const char *l0, const char *r0)
{
const unsigned char *l = (const void *)l0;
Expand Down

0 comments on commit 7f2d916

Please sign in to comment.