X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Util.xs;h=6342936fc2d33d63cab065319f8a85324b7c8a3a;hb=3182f33c797b4d40147a625e1c99e1b6054208a3;hp=86a21cae21f8f92668960c29cb619330851b249a;hpb=4dc1aa8932c595136b763a34207e4e9ee683dc53;p=perl%2Fmodules%2FScalar-Vec-Util.git diff --git a/Util.xs b/Util.xs index 86a21ca..6342936 100644 --- a/Util.xs +++ b/Util.xs @@ -11,7 +11,7 @@ #include "bitvect.h" -STATIC size_t svu_validate_uv(pTHX_ SV *sv, const char *desc) { +static size_t svu_validate_uv(pTHX_ SV *sv, const char *desc) { #define svu_validate_uv(S, D) svu_validate_uv(aTHX_ (S), (D)) IV i; @@ -33,7 +33,7 @@ STATIC size_t svu_validate_uv(pTHX_ SV *sv, const char *desc) { return 0; } -STATIC char *svu_prepare_sv(pTHX_ SV *sv, size_t s, size_t l) { +static char *svu_prepare_sv(pTHX_ SV *sv, size_t s, size_t l) { #define svu_prepare_sv(S, I, L) svu_prepare_sv(aTHX_ (S), (I), (L)) STRLEN c; size_t n = s + l, i, js, jz, k, z;