]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/file.h
xnu-792.13.8.tar.gz
[apple/xnu.git] / bsd / sys / file.h
index 299cdbc6279ff43297ed52a2c86407d35fb869b2..1809f30547e100fb420f465976f5f343016de63c 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Copyright (c) 2006 Apple Computer, Inc. All Rights Reserved.
- * 
+ * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
+ *
  * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
  * 
  * This file contains Original Code and/or Modifications of Original Code 
@@ -78,9 +78,7 @@
 #include <sys/kernel_types.h>
 #endif
 
-#if __DARWIN_ALIGN_POWER
-#pragma options align=power
-#endif
+#pragma pack(4)
 
 /* for the compat sake;  */
 struct extern_file {
@@ -95,9 +93,7 @@ struct extern_file {
        caddr_t f_data;         /* vnode or socket or SHM or semaphore */
 };
 
-#if __DARWIN_ALIGN_POWER
-#pragma options align=reset
-#endif
+#pragma pack()
 
 #ifdef KERNEL
 __BEGIN_DECLS