mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 04:25:06 +02:00
Specify (void)
This commit is contained in:
parent
4d9a1c4f52
commit
4cfd1f06d8
1 changed files with 2 additions and 2 deletions
4
gc.c
4
gc.c
|
@ -126,8 +126,8 @@ void print_current_time()
|
||||||
/////////////
|
/////////////
|
||||||
// Functions
|
// Functions
|
||||||
|
|
||||||
// Perform one-time initialization before mutators can be executed
|
/** Perform one-time initialization before mutators can be executed */
|
||||||
void gc_initialize()
|
void gc_initialize(void)
|
||||||
{
|
{
|
||||||
if (ck_array_init(&Cyc_mutators, CK_ARRAY_MODE_SPMC, &my_allocator, 10) == 0) {
|
if (ck_array_init(&Cyc_mutators, CK_ARRAY_MODE_SPMC, &my_allocator, 10) == 0) {
|
||||||
fprintf(stderr, "Unable to initialize mutator array\n");
|
fprintf(stderr, "Unable to initialize mutator array\n");
|
||||||
|
|
Loading…
Add table
Reference in a new issue