V7/usr/src/libc/v6/ftime.c

Find at most related files.
including files from this version of Unix.

#include <sys/types.h>
#include <sys/timeb.h>

static struct timeb gorp = {
	0L,
	0,
	5*60,
	1
};

ftime(gorpp)
struct timeb *gorpp;
{
	*gorpp = gorp;
	return(0);
}