Print this page
11210 libm should be cstyle(1ONBLD) clean

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libm/amd64/src/libm_inlines.h
          +++ new/usr/src/lib/libm/amd64/src/libm_inlines.h
↓ open down ↓ 29 lines elided ↑ open up ↑
  30   30  /*
  31   31   * Copyright 2011, Richard Lowe.
  32   32   */
  33   33  
  34   34  /* Functions in this file are duplicated in locallibm.il.  Keep them in sync */
  35   35  
  36   36  #ifndef _LIBM_INLINES_H
  37   37  #define _LIBM_INLINES_H
  38   38  
  39   39  #ifdef __GNUC__
  40      -
  41   40  #ifdef __cplusplus
  42   41  extern "C" {
  43   42  #endif
  44   43  
  45   44  #include <sys/types.h>
  46   45  #include <sys/ieeefp.h>
  47   46  
  48   47  extern __GNU_INLINE float
  49   48  __inline_sqrtf(float a)
  50   49  {
↓ open down ↓ 157 lines elided ↑ open up ↑
 208  207  
 209  208  extern __GNU_INLINE float
 210  209  sqrtf(float f)
 211  210  {
 212  211          return (__inline_sqrtf(f));
 213  212  }
 214  213  
 215  214  #ifdef __cplusplus
 216  215  }
 217  216  #endif
 218      -
 219  217  #endif  /* __GNUC__ */
 220      -
 221  218  #endif /* _LIBM_INLINES_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX