Changes by: flatcap
Update of /cvsroot/linux-ntfs/ntfs-driver-tng/scripts
In directory usw-pr-cvs1:/tmp/cvs-serv20133/scripts
Modified Files:
ntfsextra.h
Log Message:
backwards compatibility for gcc 2.95
Index: ntfsextra.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-tng/scripts/ntfsextra.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -U2 -r1.1 -r1.2
--- ntfsextra.h 6 Jul 2001 19:43:38 -0000 1.1
+++ ntfsextra.h 25 Feb 2002 04:00:58 -0000 1.2
@@ -8,4 +8,12 @@
#endif
+#if 1
+#define SN(X) X /* Struct Name */
+#define SC(P,N) P.N /* ShortCut: Prefix, Name */
+#else
+#define SN(X)
+#define SC(P,N) N
+#endif
+
#undef NTFS_RW
|