X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;ds=sidebyside;f=modules%2Fbsd-comp.c;h=96cf1fec8441cbba028076b0252b15ac0aca12ae;hb=d225d79347bab49e41ec4192e8d3f0ee63702d9c;hp=48bde3125d84dbdd6ace6819b4afd530b9e0e310;hpb=cc7573522bf766bfcc9571ab3009673e515d409a;p=ppp.git diff --git a/modules/bsd-comp.c b/modules/bsd-comp.c index 48bde31..96cf1fe 100644 --- a/modules/bsd-comp.c +++ b/modules/bsd-comp.c @@ -39,9 +39,9 @@ /* * This version is for use with STREAMS under SunOS 4.x, - * DEC Alpha OSF/1, and AIX 4.x. + * DEC Alpha OSF/1, AIX 4.x, and SVR4 systems including Solaris 2. * - * $Id: bsd-comp.c,v 1.12 1995/05/19 03:48:34 paulus Exp $ + * $Id: bsd-comp.c,v 1.15 1995/07/11 06:38:15 paulus Exp $ */ #ifdef __aix4__ @@ -55,21 +55,30 @@ #include #include -#ifdef sun -#ifdef __svr4__ /* SunOS 5.x */ -#include -#define ALLOCATE(n) kmem_alloc((n), KM_NOSLEEP) +#ifdef __svr4__ /* SVR4, including SunOS 5.x */ +# include +# define ALLOCATE(n) kmem_alloc((n), KM_NOSLEEP) +# define FREE(p, n) kmem_free((p), (n)) #else /* SunOS 4.x */ -#include -#define ALLOCATE(n) kmem_alloc((n), KMEM_NOSLEEP) -#endif -#define FREE(p, n) kmem_free((p), (n)) +# ifdef sun +# include +# define ALLOCATE(n) kmem_alloc((n), KMEM_NOSLEEP) +# define FREE(p, n) kmem_free((p), (n)) +# endif #endif #ifdef __osf__ #include +#ifdef FIRST +#undef FIRST +#undef LAST +#endif +#ifdef FREE +#undef FREE +#endif #define ALLOCATE(n) kalloc((n)) #define FREE(p, n) kfree((p), (n)) +#define BSD_LITTLE_ENDIAN #endif #ifdef __aix4__