1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

using restrict, so restrict to c99

This commit is contained in:
Henning Nielsen Lund
2017-08-01 14:52:45 +02:00
parent 976b6ae7e1
commit d6e5769bc5
2 changed files with 5 additions and 0 deletions

View File

@ -37,9 +37,12 @@
/****************************************************************************/
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
size_t
mbrlen(const char *restrict s, size_t n, mbstate_t *restrict ps)
{
/* ZZZ unimplemented */
return(0);
}
#endif /* __STDC_VERSION__ && __STDC_VERSION__ >= 199901L */