UninterpretedBytes.st
changeset 300 fe1f742a9224
parent 95 d22739a0c6e9
child 308 f04744ef7b5d
--- a/UninterpretedBytes.st	Tue Mar 07 20:45:41 1995 +0100
+++ b/UninterpretedBytes.st	Tue Mar 07 22:27:26 1995 +0100
@@ -1,6 +1,6 @@
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
-              All Rights Reserved
+	      All Rights Reserved
 
  This software is furnished under a license and may be used
  only in accordance with the terms of that license and with the
@@ -19,9 +19,9 @@
 
 UninterpretedBytes comment:'
 COPYRIGHT (c) 1993 by Claus Gittinger
-              All Rights Reserved
+	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/UninterpretedBytes.st,v 1.8 1994-08-05 01:02:55 claus Exp $
+$Header: /cvs/stx/stx/libbasic/UninterpretedBytes.st,v 1.9 1995-03-07 21:27:18 claus Exp $
 '!
 
 !UninterpretedBytes class methodsFor:'documentation'!
@@ -29,7 +29,7 @@
 copyright
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
-              All Rights Reserved
+	      All Rights Reserved
 
  This software is furnished under a license and may be used
  only in accordance with the terms of that license and with the
@@ -42,14 +42,14 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/UninterpretedBytes.st,v 1.8 1994-08-05 01:02:55 claus Exp $
+$Header: /cvs/stx/stx/libbasic/UninterpretedBytes.st,v 1.9 1995-03-07 21:27:18 claus Exp $
 "
 !
 
 documentation
 "
     this class has been added for ST-80 compatibility.
-    Notice, that in SY/X all functionality is inherited from 
+    Notice, that in ST/X all functionality is inherited from 
     ByteArray - have a look at this for more.
 "
 ! !
@@ -68,8 +68,8 @@
      * therefore we look into a structure at run-time
      */
     union {
-        unsigned int   u_l;
-        char           u_c[sizeof(int)];
+	unsigned int   u_l;
+	char           u_c[sizeof(int)];
     } u;
 
     u.u_l = 0x87654321;