aboutsummaryrefslogtreecommitdiff
path: root/sys/base/gz/write.c
blob: 862d83329a33ec134873cf5e6e05dd76905d3191 (plain)
1
2
3
4
5
6
7
#include "internal.h"

int
gz·write(gz·Stream *s, int sz, int n, void* buf)
{
    return gzwrite(s, buf, n*sz);
}