]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/commitdiff
Replace STATIC by static
authorVincent Pit <vince@profvince.com>
Tue, 7 Apr 2015 14:16:40 +0000 (11:16 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 7 Apr 2015 14:16:40 +0000 (11:16 -0300)
Util.xs
bitvect.h

diff --git a/Util.xs b/Util.xs
index 86a21cae21f8f92668960c29cb619330851b249a..6342936fc2d33d63cab065319f8a85324b7c8a3a 100644 (file)
--- 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;
index 870d65b49459a1f9f06762d6ee6c4591c6fb94d5..207279f39afcf375074af5010042e37506be8f75 100644 (file)
--- a/bitvect.h
+++ b/bitvect.h
@@ -5,7 +5,7 @@
 
 /* ... Generic macros ...................................................... */
 
-#define INLINE_DECLARE(P) STATIC P
+#define INLINE_DECLARE(P) static P
 #define INLINE_DEFINE
 
 #ifndef BV_UNIT