TrustedFirmware Git Browser
Code Review
Sign In
review.trustedfirmware.org
/
hafnium
/
third_party
/
linux.git
/
3a0ad55d848b50499b68d7141d4eca997fce28ef
/
.
/
tools
/
build
/
feature
/
test-reallocarray.c
blob: 8170de35150dd35c6ee4b67896edacddd6aece39 [
file
] [
log
] [
blame
]
Andrew Scull
b4b6d4a
2019-01-02 15:54:55 +0000
[
diff
] [
blame
]
1
// SPDX-License-Identifier: GPL-2.0
2
#define
_GNU_SOURCE
3
#include
<stdlib.h>
4
5
int
main
(
void
)
6
{
7
return
!!
reallocarray
(
NULL
,
1
,
1
);
8
}