remove empty dir
[ghc-hetmet.git] / ghc / docs / comm / rts-libs / coding-style.html
index 99c81d0..58f5b4f 100644 (file)
@@ -108,7 +108,7 @@ POSIX-compliant to explicitly say so by having <code>#include
 
 <p><li> Some architectures have memory alignment constraints.  Others
 don't have any constraints but go faster if you align things.  These
-macros (from <tt>config.h</tt>) tell you which alignment to use
+macros (from <tt>ghcconfig.h</tt>) tell you which alignment to use
 
 <pre>
   /* minimum alignment of unsigned int */
@@ -160,7 +160,7 @@ co above).
 Avoid conditional code like this:
 
 <pre>
-  #ifdef solaris_HOST_OS
+  #ifdef solaris_host_OS
   // do something solaris specific
   #endif
 </pre>