From 7764938c41246dc19c245c49e334cc366cb67c8a Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Mon, 28 May 2007 15:26:09 +0000 Subject: [PATCH] Moved structs to module.h --- ksym.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ksym.c b/ksym.c index 32079e0..9b016d2 100644 --- a/ksym.c +++ b/ksym.c @@ -2,6 +2,7 @@ ksym.c - functions for kernel address->symbol translation Copyright (c) 1995, 1996 Dr. G.W. Wettstein Copyright (c) 1996 Enjellic Systems Development + Copyright (c) 1997-2007 Martin Schulze This file is part of the sysklogd package, a kernel and system log daemon. @@ -126,17 +127,11 @@ #include #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];