Remove argument names in function prototypes, declared in headers; fix '*' alignment in headers.

JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
This commit is contained in:
Ruben Ayrapetyan
2015-09-08 16:44:16 +03:00
parent 3b0f61ac52
commit b7c93f170d
56 changed files with 535 additions and 826 deletions
+5 -5
View File
@@ -120,13 +120,13 @@ typedef void (*mem_try_give_memory_back_callback_t) (mem_try_give_memory_back_se
}
extern void mem_init (void);
extern void mem_finalize (bool is_show_mem_stats);
extern void mem_finalize (bool);
extern uintptr_t mem_compress_pointer (const void *pointer);
extern void* mem_decompress_pointer (uintptr_t compressed_pointer);
extern uintptr_t mem_compress_pointer (const void *);
extern void *mem_decompress_pointer (uintptr_t);
extern void mem_register_a_try_give_memory_back_callback (mem_try_give_memory_back_callback_t callback);
extern void mem_unregister_a_try_give_memory_back_callback (mem_try_give_memory_back_callback_t callback);
extern void mem_register_a_try_give_memory_back_callback (mem_try_give_memory_back_callback_t);
extern void mem_unregister_a_try_give_memory_back_callback (mem_try_give_memory_back_callback_t);
#ifdef MEM_STATS
extern void mem_stats_reset_peak (void);