From 2ce891ff4dd78792acb141e030759fde2da92240 Mon Sep 17 00:00:00 2001 From: Frank Mori Hess Date: Mon, 27 Aug 2001 21:32:19 +0000 Subject: [PATCH] preventing multiple includes --- include/linux/config.h | 3 +++ include/linux/version.h | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/linux/config.h b/include/linux/config.h index 4d928ccd..a21589d4 100644 --- a/include/linux/config.h +++ b/include/linux/config.h @@ -1,3 +1,5 @@ +#ifndef __MULTI_CONFIG_H_ +#define __MULTI_CONFIG_H_ #include #ifdef CONFIG_COMEDI_RTAI @@ -5,3 +7,4 @@ #endif #include_next +#endif \ No newline at end of file diff --git a/include/linux/version.h b/include/linux/version.h index 03c34946..9d9d2646 100644 --- a/include/linux/version.h +++ b/include/linux/version.h @@ -1,8 +1,11 @@ +#ifndef __MULTI_VERSION_H_ +#define __MULTI_VERSION_H_ #include #include_next #ifndef KERNEL_VERSION #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) -#endif +#endif +#endif \ No newline at end of file -- 2.26.2