101e04c3fSmrg/************************************************************************** 201e04c3fSmrg * 301e04c3fSmrg * Copyright 2015 VMware, Inc. 401e04c3fSmrg * All Rights Reserved. 501e04c3fSmrg * 601e04c3fSmrg * Permission is hereby granted, free of charge, to any person obtaining a 701e04c3fSmrg * copy of this software and associated documentation files (the 801e04c3fSmrg * "Software"), to deal in the Software without restriction, including 901e04c3fSmrg * without limitation the rights to use, copy, modify, merge, publish, 1001e04c3fSmrg * distribute, sub license, and/or sell copies of the Software, and to 1101e04c3fSmrg * permit persons to whom the Software is furnished to do so, subject to 1201e04c3fSmrg * the following conditions: 1301e04c3fSmrg * 1401e04c3fSmrg * The above copyright notice and this permission notice (including the 1501e04c3fSmrg * next paragraph) shall be included in all copies or substantial portions 1601e04c3fSmrg * of the Software. 1701e04c3fSmrg * 1801e04c3fSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 1901e04c3fSmrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 2001e04c3fSmrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 2101e04c3fSmrg * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR 2201e04c3fSmrg * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 2301e04c3fSmrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 2401e04c3fSmrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 2501e04c3fSmrg * 2601e04c3fSmrg **************************************************************************/ 2701e04c3fSmrg 2801e04c3fSmrg#ifndef _C99_ALLOCA_H_ 2901e04c3fSmrg#define _C99_ALLOCA_H_ 3001e04c3fSmrg 3101e04c3fSmrg 3201e04c3fSmrg#if defined(_MSC_VER) 3301e04c3fSmrg 3401e04c3fSmrg# include <malloc.h> 3501e04c3fSmrg 3601e04c3fSmrg# define alloca _alloca 3701e04c3fSmrg 3801e04c3fSmrg#elif defined(__sun) || defined(__CYGWIN__) 3901e04c3fSmrg 4001e04c3fSmrg# include <alloca.h> 4101e04c3fSmrg 4201e04c3fSmrg#else /* !defined(_MSC_VER) */ 4301e04c3fSmrg 4401e04c3fSmrg# include <stdlib.h> 4501e04c3fSmrg 4601e04c3fSmrg#endif /* !defined(_MSC_VER) */ 4701e04c3fSmrg 4801e04c3fSmrg 4901e04c3fSmrg#endif 50