X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=modules%2Fbsd-comp.c;h=58b067f4606c95c31f5a1f3737b5c6cc24500e93;hp=c60dd60e13876f2a91b2dc329ddb186c35c59ccf;hb=68dd74f4cd673377343a4b950272e66203cf1785;hpb=a0dacd5c60faff5f851fa1216b5cf566c821205e diff --git a/modules/bsd-comp.c b/modules/bsd-comp.c index c60dd60..58b067f 100644 --- a/modules/bsd-comp.c +++ b/modules/bsd-comp.c @@ -41,10 +41,10 @@ * This version is for use with STREAMS under SunOS 4.x, * DEC Alpha OSF/1, AIX 4.x, and SVR4 systems including Solaris 2. * - * $Id: bsd-comp.c,v 1.14 1995/06/23 01:52:17 paulus Exp $ + * $Id: bsd-comp.c,v 1.16 1995/10/27 03:35:49 paulus Exp $ */ -#ifdef __aix4__ +#if defined(aix4) || defined(__aix4__) #include #endif #include @@ -55,19 +55,19 @@ #include #include -#ifdef __svr4__ /* SVR4, including SunOS 5.x */ +#if defined(svr4) || defined(__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 */ -# ifdef sun +# if defined(sun) || defined(__sun__) # include # define ALLOCATE(n) kmem_alloc((n), KMEM_NOSLEEP) # define FREE(p, n) kmem_free((p), (n)) # endif #endif -#ifdef __osf__ +#if defined(osf) || defined(__osf__) #include #ifdef FIRST #undef FIRST @@ -78,9 +78,10 @@ #endif #define ALLOCATE(n) kalloc((n)) #define FREE(p, n) kfree((p), (n)) +#define BSD_LITTLE_ENDIAN #endif -#ifdef __aix4__ +#if defined(aix4) || defined(__aix4__) #define ALLOCATE(n) xmalloc((n), 0, pinned_heap) #define FREE(p, n) xmfree((p), pinned_heap) #endif