fix copy'n paste error
[buildroot.git] / package / l2tp / l2tp-legacy.patch
blob39506d8819d345b832fd42461b274b414ec97080
1 --- l2tpd-0.70-pre20031121.oorig/osport.h 2004-07-08 22:47:52.000000000 +0200
2 +++ l2tpd-0.70-pre20031121/osport.h 2006-12-28 15:32:50.000000000 +0100
3 @@ -37,4 +37,11 @@
5 #endif /* defined(SOLARIS) */
7 +#if defined __UCLIBC__ && !defined UCLIBC_SUSV3_LEGACY_MACROS
8 +# define index(x, y) strchr(x, y)
9 +# define bcopy(S1, S2, LEN) ((void)memmove(S2, S1, LEN))
10 +# define bzero(S1, LEN) ((void)memset(S1, 0, LEN))
11 +# define bcmp(S1,S2,LEN) ((memcmp(S2, S1, LEN)==0)?0:1)
12 +#endif /* defined __UCLIBC__ && !defined UCLIBC_SUSV3_LEGACY_MACROS */
14 #endif /* _OSPORT_H_ */