blob: 6383246f6af2faf46b18e45b5a756c5138792315 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#include <skalibs/bufalloc.h>
#include <skalibs/genwrite.h>
int genwrite_flush_bufalloc (void *target)
{
register bufalloc *ba = target ;
return bufalloc_flush(ba) ;
}
|