Print this page
remove support for non-ANSI compilation

Split Close
Expand all
Collapse all
          --- old/usr/src/head/attr.h
          +++ new/usr/src/head/attr.h
↓ open down ↓ 11 lines elided ↑ open up ↑
  12   12   *
  13   13   * When distributing Covered Code, include this CDDL HEADER in each
  14   14   * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
       22 + * Copyright 2014 Garrett D'Amore <garrett@damore.org>
       23 + *
  22   24   * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23   25   * Use is subject to license terms.
  24   26   */
  25   27  
  26   28  #ifndef _ATTR_H
  27   29  #define _ATTR_H
  28   30  
  29      -#pragma ident   "%Z%%M% %I%     %E% SMI"        /* SVr4.0 1.6.1.7 */
  30      -
  31   31  #include <sys/types.h>
  32   32  #include <sys/nvpair.h>
  33   33  #include <sys/attr.h>
  34   34  
  35   35  #ifdef  __cplusplus
  36   36  extern "C" {
  37   37  #endif
  38   38  
  39      -#if defined(__STDC__)
  40      -
  41   39  extern int getattrat(int, xattr_view_t, const char *, nvlist_t **);
  42   40  extern int fgetattr(int, xattr_view_t, nvlist_t **);
  43   41  extern int setattrat(int, xattr_view_t, const char *, nvlist_t *);
  44   42  extern int fsetattr(int, xattr_view_t, nvlist_t *);
  45   43  
  46      -#else   /* defined(__STDC__) */
  47      -
  48      -extern int getattrat();
  49      -extern int fgetattr();
  50      -extern int setattrat();
  51      -extern int fsetattr();
  52      -
  53      -#endif  /* defined(__STDC__) */
  54      -
  55   44  #ifdef  __cplusplus
  56   45  }
  57   46  #endif
  58   47  
  59   48  #endif  /* _ATTR_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX