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

u_strerr.c « string « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2978df0cfe60e588afc7259c630928e2cc84ace0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <_ansi.h>

char *
_DEFUN(_user_strerror, (errnum, internal, errptr),
       int errnum _AND
       int internal _AND
       int *errptr)
{
  /* prevent warning about unused parameters */
  _CAST_VOID errnum;
  _CAST_VOID internal;
  _CAST_VOID errptr;

  return 0;
}