Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-04 05:25:16 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 20:47:08 +0300
commit0bda30e1ffd23488aa4a9b73f228089463fbee1a (patch)
treeb0efb851be762c4d530cc259070005318702321d /newlib/libc/search
parent6783860a2e4e4183c073f62e4bb938cea0e096c3 (diff)
ansification: remove _CONST
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/search')
-rw-r--r--newlib/libc/search/bsearch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/search/bsearch.c b/newlib/libc/search/bsearch.c
index c15ea64d2..86380a816 100644
--- a/newlib/libc/search/bsearch.c
+++ b/newlib/libc/search/bsearch.c
@@ -57,8 +57,8 @@ No supporting OS subroutines are required.
_PTR
_DEFUN (bsearch, (key, base, nmemb, size, compar),
- _CONST _PTR key,
- _CONST _PTR base,
+ const _PTR key,
+ const _PTR base,
size_t nmemb,
size_t size,
int _EXFNPTR(compar, (const _PTR, const _PTR)))