summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-04-21 03:04:41 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-21 03:04:41 +0000
commitdf13269938f73869829eeb0e7aa62c17d44ae573 (patch)
tree86d857e3273d892d5616f0c510779bc6a7981b1e /hv.c
parent2a8c30295b275492168d354bd41e49b2adb4c4df (diff)
downloadperl-df13269938f73869829eeb0e7aa62c17d44ae573.tar.gz
S_ stands sfor static.
p4raw-id: //depot/perl@16036
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hv.c b/hv.c
index 02a0955ed3..2fd76cee5a 100644
--- a/hv.c
+++ b/hv.c
@@ -189,7 +189,7 @@ Perl_hv_fetch(pTHX_ HV *hv, const char *key, I32 klen, I32 lval)
return hv_fetch_flags (hv, key, klen, lval, flags);
}
-SV**
+STATIC SV**
S_hv_fetch_flags(pTHX_ HV *hv, const char *key, I32 klen, I32 lval, int flags)
{
register XPVHV* xhv;
@@ -2031,7 +2031,7 @@ Perl_unshare_hek(pTHX_ HEK *hek)
hek if non-NULL takes priority over the other 3, else str, len and hash
are used. If so, len and hash must both be valid for str.
*/
-void
+STATIC void
S_unshare_hek_or_pvn(pTHX_ HEK *hek, const char *str, I32 len, U32 hash)
{
register XPVHV* xhv;
@@ -2142,7 +2142,7 @@ Perl_share_hek(pTHX_ const char *str, I32 len, register U32 hash)
return share_hek_flags (str, len, hash, flags);
}
-HEK *
+STATIC HEK *
S_share_hek_flags(pTHX_ const char *str, I32 len, register U32 hash, int flags)
{
register XPVHV* xhv;