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: cde05adb2e7d064a9a59bb63d5b551573f7b49d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <_ansi.h>

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

  return 0;
}