You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
156 B
C
9 lines
156 B
C
7 months ago
|
#include "iob_internal.h"
|
||
|
|
||
|
io_batch* iob_new_autofree(size_t hint_entries) {
|
||
|
io_batch* b=iob_new(hint_entries);
|
||
|
if (b)
|
||
|
b->autofree=1;
|
||
|
return b;
|
||
|
}
|