X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fdocs%2Fcomm%2Frts-libs%2Fcoding-style.html;h=58f5b4f9bb485f448ae1e10f2884821c0e142cc2;hb=28a464a75e14cece5db40f2765a29348273ff2d2;hp=99c81d0cd95b8edd366257df4e8590d7e8c5476a;hpb=81cb7610337b33508066dd400cd371ff6033c987;p=ghc-hetmet.git diff --git a/ghc/docs/comm/rts-libs/coding-style.html b/ghc/docs/comm/rts-libs/coding-style.html index 99c81d0..58f5b4f 100644 --- a/ghc/docs/comm/rts-libs/coding-style.html +++ b/ghc/docs/comm/rts-libs/coding-style.html @@ -108,7 +108,7 @@ POSIX-compliant to explicitly say so by having #include

  • Some architectures have memory alignment constraints. Others don't have any constraints but go faster if you align things. These -macros (from config.h) tell you which alignment to use +macros (from ghcconfig.h) tell you which alignment to use
       /* minimum alignment of unsigned int */
    @@ -160,7 +160,7 @@ co above).
     Avoid conditional code like this:
     
     
    -  #ifdef solaris_HOST_OS
    +  #ifdef solaris_host_OS
       // do something solaris specific
       #endif