Browse Source

fix wcscasecmp() parameters; <wchar.h> was correct

OPENBSD_5_0
naddy 13 years ago
parent
commit
eea0705fca
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/lib/libc/string/wcscasecmp.c

+ 2
- 2
src/lib/libc/string/wcscasecmp.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: wcscasecmp.c,v 1.1 2011/05/28 15:16:46 espie Exp $ */
/* $OpenBSD: wcscasecmp.c,v 1.2 2011/06/01 19:29:48 naddy Exp $ */
/*
* Copyright (c) 2011 Marc Espie
@ -30,7 +30,7 @@
#include "locale/runetype.h"
int
wcscasecmp(const wchar_t *s1, const char *s2)
wcscasecmp(const wchar_t *s1, const wchar_t *s2)
{
wchar_t l1, l2;


Loading…
Cancel
Save