preventing multiple includes
authorFrank Mori Hess <fmhess@speakeasy.net>
Mon, 27 Aug 2001 21:32:19 +0000 (21:32 +0000)
committerFrank Mori Hess <fmhess@speakeasy.net>
Mon, 27 Aug 2001 21:32:19 +0000 (21:32 +0000)
include/linux/config.h
include/linux/version.h

index 4d928ccd1ecf13b51a499da3451c04377d5d0c5d..a21589d4342a456cd139de48aea30cc3908ec515 100644 (file)
@@ -1,3 +1,5 @@
+#ifndef __MULTI_CONFIG_H_
+#define __MULTI_CONFIG_H_
 
 #include <modbuild/config.h>
 #ifdef CONFIG_COMEDI_RTAI
@@ -5,3 +7,4 @@
 #endif
 #include_next <linux/config.h>
 
+#endif
\ No newline at end of file
index 03c349464fee0f1888ce6ec7c2420376d63429cf..9d9d2646205bab355a37cd048ed0e8c7c6988fce 100644 (file)
@@ -1,8 +1,11 @@
+#ifndef __MULTI_VERSION_H_
+#define __MULTI_VERSION_H_
 
 #include <modbuild/version.h>
 #include_next <linux/version.h>
 
 #ifndef KERNEL_VERSION
 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
-#endif 
+#endif
 
+#endif
\ No newline at end of file