You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// SPDX-License-Identifier: GPL-2.0 |
|
#include "builtin.h" |
|
#include "perf.h" |
|
#include <linux/compiler.h> |
|
#include <stdio.h> |
|
|
|
int cmd_version(int argc __maybe_unused, const char **argv __maybe_unused) |
|
{ |
|
printf("perf version %s\n", perf_version_string); |
|
return 0; |
|
}
|
|
|