1/*
2 * bcm_osl_ext_osl.h -- osl for external supplicant
3 *
4 * Copyright (C) 2014, Broadcom Corporation
5 * All Rights Reserved.
6 *
7 * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
8 * the contents of this file may not be disclosed to third parties, copied
9 * or duplicated in any form, in whole or in part, without the prior
10 * written permission of Broadcom Corporation.
11 *
12 * $Id: bcm_osl_ext_osl.h,v 1.1 2010-02-23 17:43:13 $
13 */
14
15#ifndef _bcm_osl_ext_osl_h_
16#define _bcm_osl_ext_osl_h_
17
18#include <osl.h>
19
20#define OS_MALLOC(len) malloc(len)
21#define OS_FREE(p) free(p)
22
23#endif /* _bcm_osl_ext_osl_h_ */
24