Initial revision

This commit is contained in:
ceriel
1987-01-05 17:31:38 +00:00
parent eb28fd80f9
commit b63bf2720c
18 changed files with 1193 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include "object.h"
long
rd_long(fd)
{
char buf[4];
rd_bytes(fd, buf, 4L);
return get4(buf);
}