(root)/
gcc-13.2.0/
fixincludes/
tests/
base/
rpc/
auth.h
       1  /*  DO NOT EDIT THIS FILE.
       2  
       3      It has been auto-edited by fixincludes from:
       4  
       5  	"fixinc/tests/inc/rpc/auth.h"
       6  
       7      This had to be done to correct non-standard usages in the
       8      original, manufacturer supplied header file.  */
       9  
      10  
      11  
      12  #if defined( STRUCT_SOCKADDR_CHECK )
      13  struct sockaddr;
      14  extern AUTH* authdes_create( struct sockaddr* );
      15  #endif  /* STRUCT_SOCKADDR_CHECK */
      16  
      17  
      18  #if defined( SUN_AUTH_PROTO_CHECK )
      19  struct auth_t {
      20  #ifdef __cplusplus
      21      int (*name)(...); /* C++ bad */
      22  #else
      23      int (*name)(); /* C++ bad */
      24  #endif
      25  };
      26  #endif  /* SUN_AUTH_PROTO_CHECK */