Skip to content

Commit

Permalink
Don't use restrict type qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
xrme committed Apr 19, 2020
1 parent b25693f commit 596c674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp-kernel/unix-calls.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ sigaltstack(stack_t *in, stack_t *out)
#endif

char *
lisp_realpath(const char *restrict file_name, char *restrict resolved_name)
lisp_realpath(const char *file_name, char *resolved_name)
{
return realpath(file_name, resolved_name);
}

0 comments on commit 596c674

Please sign in to comment.