home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / radius_2.zip / conf.h < prev    next >
C/C++ Source or Header  |  1994-12-27  |  1KB  |  54 lines

  1. /*
  2.  *
  3.  *    RADIUS
  4.  *    Remote Authentication Dial In User Service
  5.  *
  6.  *
  7.  *    Livingston Enterprises, Inc.
  8.  *    6920 Koll Center Parkway
  9.  *    Pleasanton, CA   94566
  10.  *
  11.  *    Copyright 1992 Livingston Enterprises, Inc.
  12.  *
  13.  *    Permission to use, copy, modify, and distribute this software for any
  14.  *    purpose and without fee is hereby granted, provided that this
  15.  *    copyright and permission notice appear on all copies and supporting
  16.  *    documentation, the name of Livingston Enterprises, Inc. not be used
  17.  *    in advertising or publicity pertaining to distribution of the
  18.  *    program without specific prior permission, and notice be given
  19.  *    in supporting documentation that copying and distribution is by
  20.  *    permission of Livingston Enterprises, Inc.   
  21.  *
  22.  *    Livingston Enterprises, Inc. makes no representations about
  23.  *    the suitability of this software for any purpose.  It is
  24.  *    provided "as is" without express or implied warranty.
  25.  *
  26.  */
  27.  
  28. /*
  29.  *    @(#)conf.h    1.2 12/22/94
  30.  */
  31.  
  32. #if defined(__alpha) && defined(__osf__)
  33. typedef unsigned int    UINT4;
  34. #else
  35. typedef unsigned long    UINT4;
  36. #endif
  37.  
  38. #if defined(unixware) || defined(sys5) || defined(M_UNIX)
  39. #include        <string.h>
  40. #else   /* unixware */
  41. #include        <strings.h>
  42. #endif  /* unixware */
  43.  
  44. #if defined(bsdi)
  45. #include        <machine/inline.h>
  46. #include        <machine/endian.h>
  47. #else    /* bsdi */
  48. #include        <malloc.h>
  49. #endif    /* bsdi */
  50.  
  51. #if defined(aix)
  52. #include    <sys/select.h>
  53. #endif    /* aix     */
  54.