repo.or.cz
/
linux-2.6
/
next.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'akpm'
[linux-2.6/next.git]
/
tools
/
kvm
/
builtin-version.c
blob
b8bb8597b97dce13eff9faeb43fc3d6fe9a3ec83
1
#include <kvm/util.h>
2
#include <kvm/kvm-cmd.h>
3
#include <kvm/builtin-version.h>
4
#include <kvm/kvm.h>
5
6
#include <stdio.h>
7
#include <string.h>
8
#include <signal.h>
9
10
int
kvm_cmd_version
(
int
argc
,
const char
**
argv
,
const char
*
prefix
)
11
{
12
printf
(
"kvm tool %s
\n
"
,
KVMTOOLS_VERSION
);
13
14
return
0
;
15
}