Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
1ff9ecf797e398b9937d9da4c2236f4140b96339
1ff9ecf797e398b9937d9da4c2236f4140b96339
Switch branch/tag
linux
tools
perf
config
feature-checks
test-libpython-version.c
Find file
Normal view
History
Permalink
test-libpython-version.c
100 Bytes
Edit
Web IDE
Newer
Older
tools/perf/build: Split out feature check: 'libpython-version'
Ingo Molnar
committed
11 years ago
1
2
3
4
5
6
7
8
9
10
#include <Python.h>
#if PY_VERSION_HEX >= 0x03000000
#error
#endif
int
main
(
void
)
{
return
0
;
}