debian/rules: Use `git' potty wrapper.
[qmail] / stralloc_cat.c
CommitLineData
2117e02e
MW
1#include "byte.h"
2#include "stralloc.h"
3
4int stralloc_cat(sato,safrom)
5stralloc *sato;
6stralloc *safrom;
7{
8 return stralloc_catb(sato,safrom->s,safrom->len);
9}