xref: /optee_os/lib/libutils/ext/include/stdlib_ext.h (revision c7f1b4f7881fded88ca7b5bffc8cc47b94c07dd5)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2019, Linaro Limited
4  */
5 
6 /*
7  * This file provides extensions to functions defined in <stdlib.h>
8  */
9 
10 #ifndef __STDLIB_EXT_H
11 #define __STDLIB_EXT_H
12 
13 #include <stddef.h>
14 
15 /* Overwrite buffer with a fixed pattern and free it. @ptr may be NULL. */
16 void free_wipe(void *ptr);
17 
18 #endif /* __STDLIB_EXT_H */
19