repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: use 64K pages for bookkeeping, second attempt
[newlib-cygwin.git]
/
newlib
/
libc
/
string
/
u_strerr.c
blob
cde05adb2e7d064a9a59bb63d5b551573f7b49d6
1
#include <_ansi.h>
2
3
char
*
4
_user_strerror
(
int
errnum
,
5
int
internal
,
6
int
*
errptr
)
7
{
8
/* prevent warning about unused parameters */
9
(
void
)
errnum
;
10
(
void
)
internal
;
11
(
void
)
errptr
;
12
13
return
0
;
14
}