Author: julianalbo
Date: Wed Aug 13 02:40:22 2008
New Revision: 30205
Modified:
trunk/src/hash.c
Log:
headerize src/hash.c
Modified: trunk/src/hash.c
==============================================================================
--- trunk/src/hash.c (original)
+++ trunk/src/hash.c Wed Aug 13 02:40:22 2008
@@ -101,6 +101,18 @@
__attribute__nonnull__(2)
FUNC_MODIFIES(*s);
+static void parrot_mark_hash_both(PARROT_INTERP, ARGIN(Hash *hash))
+ __attribute__nonnull__(1)
+ __attribute__nonnull__(2);
+
+static void parrot_mark_hash_keys(PARROT_INTERP, ARGIN(Hash *hash))
+ __attribute__nonnull__(1)
+ __attribute__nonnull__(2);
+
+static void parrot_mark_hash_values(PARROT_INTERP, ARGIN(Hash *hash))
+ __attribute__nonnull__(1)
+ __attribute__nonnull__(2);
+
PARROT_WARN_UNUSED_RESULT
PARROT_PURE_FUNCTION
static int pointer_compare(SHIM_INTERP,
@@ -114,15 +126,6 @@
__attribute__nonnull__(1)
__attribute__nonnull__(2);
-static void
-parrot_mark_hash_keys(PARROT_INTERP, ARGIN(Hash *));
-
-static void
-parrot_mark_hash_values(PARROT_INTERP, ARGIN(Hash *));
-
-static void
-parrot_mark_hash_both(PARROT_INTERP, ARGIN(Hash *));
-
/* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will
be lost. */
/* HEADERIZER END: static */