Print this page
5956 orientate is not a word
Reviewed by: Garrett D'Amore <garrett@damore.org>
Reviewed by: Marcel Telka <marcel@telka.sk>

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libc/inc/mse.h
          +++ new/usr/src/lib/libc/inc/mse.h
↓ open down ↓ 78 lines elided ↑ open up ↑
  79   79   *      _WC_MODE        Wide orientation
  80   80   *      _BYTE_MODE      Byte orientation
  81   81   *      _NO_MODE        Unoriented
  82   82   */
  83   83  extern void     _setorientation(FILE *, _IOP_orientation_t);
  84   84  
  85   85  /*
  86   86   * From page 32 of XSH5
  87   87   * Once a wide-character I/O function has been applied
  88   88   * to a stream without orientation, the stream becomes
  89      - * wide-orientated.  Similarly, once a byte I/O function
       89 + * wide-oriented.  Similarly, once a byte I/O function
  90   90   * has been applied to a stream without orientation,
  91      - * the stream becomes byte-orientated.  Only a call to
       91 + * the stream becomes byte-oriented.  Only a call to
  92   92   * the freopen() function or the fwide() function can
  93   93   * otherwise alter the orientation of a stream.
  94   94   */
  95   95  
  96   96  #define _SET_ORIENTATION_BYTE(iop) \
  97   97  { \
  98   98          if (GET_NO_MODE(iop)) \
  99   99                  _setorientation(iop, _BYTE_MODE); \
 100  100  }
 101  101  
 102  102  #endif  /* _MSE_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX