1/*
2 * android.h
3 * Android adaptation stuff
4 *
5 * Copyright (C) 2014, Broadcom Corporation
6 * All Rights Reserved.
7 *
8 * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
9 * the contents of this file may not be disclosed to third parties, copied
10 * or duplicated in any form, in whole or in part, without the prior
11 * written permission of Broadcom Corporation.
12 *
13 * $Id: android.h,v 1.1 2010-03-18 22:21:01 $
14*/
15
16#ifndef __android_h__
17#define __android_h__
18
19#define bcmp(b1, b2, len) memcmp((b1), (b2), (len))
20
21
22#endif /* __android_h__ */
23