mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
7a8ef4c4b5
Not needed in this header, added to the places that need FILE, putchar(), access() and a few other prototypes. Link: http://lkml.kernel.org/n/tip-xxtdsl6nsna82j7puwbdjqhs@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
11 lines
228 B
C
11 lines
228 B
C
#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;
|
|
}
|