Changes by: flatcap
Update of /cvsroot/linux-ntfs/linux-ntfs/doc
In directory usw-pr-cvs1:/tmp/cvs-serv17019/doc
Modified Files:
template.c template.h
Log Message:
whitespace and include guards
Index: template.c
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/doc/template.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -U2 -r1.2 -r1.3
--- template.c 3 Jul 2002 21:56:00 -0000 1.2
+++ template.c 11 Jul 2002 16:20:32 -0000 1.3
@@ -27,10 +27,10 @@
/*
- * WARNING: This program might not work on architectures which do not allow
- * unaligned access. For those, the program would need to start using
+ * WARNING: This program might not work on architectures which do not allow
+ * unaligned access. For those, the program would need to start using
* get/put_unaligned macros (#include <asm/unaligned.h>), but not doing it yet,
* since NTFS really mostly applies to ia32 only, which does allow unaligned
- * accesses. We might not actually have a problem though, since the structs are
- * defined as being packed so that might be enough for gcc to insert the
+ * accesses. We might not actually have a problem though, since the structs are
+ * defined as being packed so that might be enough for gcc to insert the
* correct code.
*
Index: template.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/doc/template.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -U2 -r1.1 -r1.2
--- template.h 23 Jan 2001 16:35:04 -0000 1.1
+++ template.h 11 Jul 2002 16:20:32 -0000 1.2
@@ -9,18 +9,18 @@
* (at your option) any later version.
*
- * This program/include file is distributed in the hope that it will be
- * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
+ * This program/include file is distributed in the hope that it will be
+ * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with this program (in the main directory of the Linux-NTFS
+ * along with this program (in the main directory of the Linux-NTFS
* distribution in the file COPYING); if not, write to the Free Software
* Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef NAME_H
-#define NAME_H
+#ifndef NTFS_NAME_H
+#define NTFS_NAME_H
-#endif /* defined NAME_H */
+#endif /* defined NTFS_NAME_H */
|