source: trunk/libs/newlib/src/newlib/libc/string/u_strerr.c @ 559

Last change on this file since 559 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 214 bytes
Line 
1#include <_ansi.h>
2
3char *
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}
Note: See TracBrowser for help on using the repository browser.