1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18034 from laurin/arpa-inet-restrict

sys/posix/include/arpa: use `__restrict` instead of `restrict`
This commit is contained in:
benpicco 2022-05-07 17:32:04 +02:00 committed by GitHub
commit 6b0a105344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ extern "C" {
* @return NULL, if @p size was smaller than needed
* @return NULL, if @p src or @p dst was NULL
*/
const char *inet_ntop(int af, const void *restrict src, char *restrict dst,
const char *inet_ntop(int af, const void *__restrict src, char *__restrict dst,
socklen_t size);
/**