1
#include "cdbmake.h"
2
3
void cdbmake_pack(buf,num)
4
unsigned char *buf;
5
uint32 num;
6
{
7
*buf++ = num; num >>= 8;
8
9
10
*buf = num;
11
}