Skip to content

Commit

Permalink
rerun 'make headerizer'
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@44888 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
coke committed Mar 12, 2010
1 parent b1a47ec commit 25e519b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions include/parrot/pmc.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ PMC * Parrot_pmc_new_init(PARROT_INTERP,

PARROT_EXPORT
PARROT_CANNOT_RETURN_NULL
PMC * Parrot_pmc_new_init_int(PARROT_INTERP,
INTVAL base_type,
INTVAL init)
PMC * Parrot_pmc_new_init_int(PARROT_INTERP, INTVAL base_type, INTVAL init)
__attribute__nonnull__(1);

PARROT_EXPORT
Expand Down Expand Up @@ -179,6 +177,8 @@ PMC * Parrot_pmc_new_temporary(PARROT_INTERP, INTVAL base_type)
#define ASSERT_ARGS_Parrot_pmc_new_init __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(init))
#define ASSERT_ARGS_Parrot_pmc_new_init_int __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
#define ASSERT_ARGS_Parrot_pmc_new_noinit __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
#define ASSERT_ARGS_Parrot_pmc_register_new_type __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
Expand Down
8 changes: 4 additions & 4 deletions include/parrot/string_funcs.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,9 @@ INTVAL Parrot_str_is_cclass(PARROT_INTERP,
__attribute__nonnull__(1)
__attribute__nonnull__(3);

PARROT_EXPORT
INTVAL Parrot_str_is_null(SHIM_INTERP, ARGIN_NULLOK(const STRING *s));

PARROT_EXPORT
PARROT_WARN_UNUSED_RESULT
PARROT_CANNOT_RETURN_NULL
Expand Down Expand Up @@ -492,9 +495,6 @@ STRING * string_increment(PARROT_INTERP, ARGIN(const STRING *s))
__attribute__nonnull__(1)
__attribute__nonnull__(2);

PARROT_EXPORT
INTVAL Parrot_str_is_null(SHIM_INTERP, ARGIN_NULLOK(const STRING *s));

PARROT_EXPORT
INTVAL STRING_is_null(SHIM_INTERP, ARGIN_NULLOK(const STRING *s));

Expand Down Expand Up @@ -630,6 +630,7 @@ STRING* Parrot_str_from_uint(PARROT_INTERP,
#define ASSERT_ARGS_Parrot_str_is_cclass __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(s))
#define ASSERT_ARGS_Parrot_str_is_null __attribute__unused__ int _ASSERT_ARGS_CHECK = (0)
#define ASSERT_ARGS_Parrot_str_join __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(ar))
Expand Down Expand Up @@ -714,7 +715,6 @@ STRING* Parrot_str_from_uint(PARROT_INTERP,
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(s))
#define ASSERT_ARGS_STRING_is_null __attribute__unused__ int _ASSERT_ARGS_CHECK = (0)
#define ASSERT_ARGS_Parrot_str_is_null __attribute__unused__ int _ASSERT_ARGS_CHECK = (0)
#define ASSERT_ARGS_string_make __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
#define ASSERT_ARGS_string_make_from_charset __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
Expand Down

0 comments on commit 25e519b

Please sign in to comment.