iBoot/lib/libc/memset_chk.c

29 lines
645 B
C

/*
* Copyright (C) 2014 Apple Inc. All rights reserved.
*
* This document is the property of Apple Computer, Inc.
* It is considered confidential and proprietary.
*
* This document may not be reproduced or transmitted in any form,
* in whole or in part, without the express written permission of
* Apple Computer, Inc.
*/
#include <compiler.h>
#include <string.h>
#include <sys/types.h>
#include <sys.h>
#if defined(memset)
#undef memset
#endif
void *
__memset_chk(void *dst, int c, size_t s, size_t chk_size)
{
if (unlikely(chk_size < s))
panic("object size check failed (%zu < %zu)", s, chk_size);
return memset(dst, c, s);
}