From: Frank Mori Hess Date: Mon, 27 Aug 2001 21:32:19 +0000 (+0000) Subject: preventing multiple includes X-Git-Tag: r0_7_61~137 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2ce891ff4dd78792acb141e030759fde2da92240;p=comedi.git preventing multiple includes --- 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