Moved structs to module.h

This commit is contained in:
Joey Schulze 2007-05-28 15:26:09 +00:00
parent bf5b096fdc
commit 7764938c41

9
ksym.c
View File

@ -2,6 +2,7 @@
ksym.c - functions for kernel address->symbol translation
Copyright (c) 1995, 1996 Dr. G.W. Wettstein <greg@wind.rmcc.com>
Copyright (c) 1996 Enjellic Systems Development
Copyright (c) 1997-2007 Martin Schulze <joey@infodrom.org>
This file is part of the sysklogd package, a kernel and system log daemon.
@ -126,17 +127,11 @@
#include <sys/utsname.h>
#include "klogd.h"
#include "ksyms.h"
#include "module.h"
#define VERBOSE_DEBUGGING 0
/* Variables static to this module. */
struct sym_table
{
unsigned long value;
char *name;
};
static int num_syms = 0;
static int i_am_paranoid = 0;
static char vstring[12];