view blobstat/struct.h @ 402:1b83d07576bf

compal/boot/c123-boot.disasm: missed vector branch at 0x1c
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jan 2023 00:06:59 +0000 (2023-01-15)
parents 23e5b940cb8b
children
line wrap: on
line source
struct category {
	char	*name;
	u_long	accum;
	struct	category *next;
};

struct libentry {
	char	*libname;
	char	*member;
	struct	category *cat;
	struct	libentry *next;
};