X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/59e0d9fe772464b93d835d2a2964457702469a43..HEAD:/include/alloca.h diff --git a/include/alloca.h b/include/alloca.h index ef101c4..6f41a4d 100644 --- a/include/alloca.h +++ b/include/alloca.h @@ -3,8 +3,6 @@ * * @APPLE_LICENSE_HEADER_START@ * - * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. - * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in @@ -27,16 +25,14 @@ #define _ALLOCA_H_ #include -#include - -#ifndef _BSD_SIZE_T_DEFINED_ -#define _BSD_SIZE_T_DEFINED_ -typedef _BSD_SIZE_T_ size_t; -#endif +#include <_types.h> +#include +#ifndef UNIFDEF_DRIVERKIT __BEGIN_DECLS void *alloca(size_t); /* built-in for gcc */ __END_DECLS +#endif /* UNIFDEF_DRIVERKIT */ #if defined(__GNUC__) && __GNUC__ >= 3 /* built-in for gcc 3 */