diff options
author | Karl Williamson <khw@cpan.org> | 2014-06-06 13:13:25 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-06-07 10:24:59 -0600 |
commit | 2376ab1f7929a7a9f33c6ed28ac0f7c3361894c2 (patch) | |
tree | c8aa07e37353c9b4b5a9bf0ad460df3c64dd7b1d /ext | |
parent | 417b32ce5913df94c743d210447cc1b0112d59f3 (diff) | |
download | perl-2376ab1f7929a7a9f33c6ed28ac0f7c3361894c2.tar.gz |
POSIX.xs: Add a const to a parameter
Diffstat (limited to 'ext')
-rw-r--r-- | ext/POSIX/POSIX.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 7161014262..9631c7d79f 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -986,7 +986,7 @@ localeconv() char * setlocale(category, locale = 0) int category - char * locale + const char * locale PREINIT: char * retval; CODE: |