pike.git/
src/
pike_types.h
Branch:
Tag:
Non-build tags
All tags
No tags
2014-08-21
2014-08-21 18:11:55 by Martin Nilsson <nilsson@opera.com>
3b54e5516f34132abcab47c2ce48c0149ffca1ee (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.0
Added void to zero argument functions.
206:
#define push_reverse_type debug_push_reverse_type #endif /* DEBUG_MALLOC */
-
extern void type_stack_mark();
+
extern void type_stack_mark(
void
);
#define reset_type_stack() do { \ type_stack_pop_to_mark(); \
215:
/* Prototypes begin here */ PMOD_EXPORT void really_free_pike_type(struct pike_type * t);
-
PMOD_EXPORT ATTRIBUTE((malloc)) struct pike_type * alloc_pike_type();
+
PMOD_EXPORT ATTRIBUTE((malloc)) struct pike_type * alloc_pike_type(
void
);
PMOD_EXPORT void count_memory_in_pike_types(size_t *n, size_t *s); void debug_check_type_string(struct pike_type *s); void init_types(void);