]> Git Repo - linux.git/blob - scripts/include/array_size.h
x86/kaslr: Expose and use the end of the physical memory address space
[linux.git] / scripts / include / array_size.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef ARRAY_SIZE_H
3 #define ARRAY_SIZE_H
4
5 /**
6  * ARRAY_SIZE - get the number of elements in array @arr
7  * @arr: array to be sized
8  */
9 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
10
11 #endif /* ARRAY_SIZE_H */
This page took 0.032047 seconds and 4 git commands to generate.