[svn:parrot] r35923 - trunk/src
[email protected] Fri, 23 Jan 2009 13:37:31 -0800 (PST)
| Newsgroups | perl.cvs.parrot |
|---|---|
| Message-ID | <[email protected]> |
Author: julianalbo
Date: Fri Jan 23 13:37:30 2009
New Revision: 35923
Modified:
trunk/src/hash.c
Log:
a little bit of headerizing
Modified: trunk/src/hash.c
==============================================================================
--- trunk/src/hash.c (original)
+++ trunk/src/hash.c Fri Jan 23 13:37:30 2009
@@ -63,11 +63,11 @@
static void hash_freeze(PARROT_INTERP,
ARGIN(const Hash * const hash),
- ARGMOD(visit_info* info))
+ ARGMOD(visit_info *info))
__attribute__nonnull__(1)
__attribute__nonnull__(2)
__attribute__nonnull__(3)
- FUNC_MODIFIES(* info);
+ FUNC_MODIFIES(*info);
static void hash_thaw(PARROT_INTERP,
ARGMOD(Hash *hash),
@@ -422,7 +422,7 @@
/*
-=item C<void parrot_mark_hash_keys>
+=item C<static void parrot_mark_hash_keys>
Marks the hash and only its keys as live.
@@ -458,7 +458,7 @@
/*
-=item C<void parrot_mark_hash_values>
+=item C<static void parrot_mark_hash_values>
Marks the hash and only its values as live.
@@ -494,7 +494,7 @@
/*
-=item C<void parrot_mark_hash_both>
+=item C<static void parrot_mark_hash_both>
Marks the hash and both its keys and values as live.