Skip to content

Commit

Permalink
forgot to rename a init_world_once function
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandobrito committed Nov 29, 2010
1 parent ad66f87 commit 92cf618
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/parrot/global_setup.h
Expand Up @@ -34,15 +34,15 @@ void Parrot_gbl_set_config_hash_internal(
void init_world(PARROT_INTERP)
__attribute__nonnull__(1);

void init_world_once(PARROT_INTERP)
void Parrot_gbl_init_world_once(PARROT_INTERP)
__attribute__nonnull__(1);

#define ASSERT_ARGS_Parrot_gbl_set_config_hash_internal \
__attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(parrot_config))
#define ASSERT_ARGS_init_world __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
#define ASSERT_ARGS_init_world_once __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
#define ASSERT_ARGS_Parrot_gbl_init_world_once __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
/* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will be lost. */
/* HEADERIZER END: src/global_setup.c */
Expand Down

0 comments on commit 92cf618

Please sign in to comment.