TrustedFirmware Git Browser
Code Review
Sign In
review.trustedfirmware.org
/
hafnium
/
third_party
/
linux
/
0e64123141f3854e695eb4924d82b52856691466
/
.
/
tools
/
build
/
feature
/
test-libpython-version.c
blob: 47714b942d4d35bf61d4646d797d474e836a8ba9 [
file
] [
log
] [
blame
]
Andrew Scull
b4b6d4a
2019-01-02 15:54:55 +0000
[
diff
] [
blame
]
1
// SPDX-License-Identifier: GPL-2.0
2
#include
<Python.h>
3
4
#if PY_VERSION_HEX >= 0x03000000
5
#error
6
#endif
7
8
int
main
(
void
)
9
{
10
return
0
;
11
}