example: Fix a build warning.
[platform/upstream/cmocka.git] / example / allocate_module.c
1 /*
2  * Copyright 2008 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #ifdef HAVE_CONFIG_H
17 #include "config.h"
18 #endif
19 #ifdef HAVE_MALLOC_H
20 #include <malloc.h>
21 #endif
22 #include <sys/types.h>
23
24 #if UNIT_TESTING
25 extern void* _test_malloc(const size_t size, const char* file, const int line);
26 extern void* _test_calloc(const size_t number_of_elements, const size_t size,
27                           const char* file, const int line);
28 extern void _test_free(void* const ptr, const char* file, const int line);
29
30 #define malloc(size) _test_malloc(size, __FILE__, __LINE__)
31 #define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__)
32 #define free(ptr) _test_free(ptr, __FILE__, __LINE__)
33 #endif // UNIT_TESTING
34
35 void leak_memory(void);
36 void buffer_overflow(void);
37 void buffer_underflow(void);
38
39 void leak_memory(void) {
40     int * const temporary = (int*)malloc(sizeof(int));
41     *temporary = 0;
42 }
43
44 void buffer_overflow(void) {
45     char * const memory = (char*)malloc(sizeof(int));
46     memory[sizeof(int)] = '!';
47     free(memory);
48 }
49
50 void buffer_underflow(void) {
51     char * const memory = (char*)malloc(sizeof(int));
52     memory[-1] = '!';
53     free(memory);
54 }