debian/rules: Use `git' potty wrapper.
[qmail] / cdbmake_hash.c
CommitLineData
2117e02e
MW
1#include "cdbmake.h"
2
3uint32 cdbmake_hashadd(h,c)
4uint32 h;
5unsigned int c;
6{
7 h += (h << 5);
8 h ^= (uint32) (unsigned char) c;
9 return h;
10}