mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-01-23 00:07:07 +03:00
10 lines
149 B
C
10 lines
149 B
C
#include <stdio.h>
|
|
|
|
#include "cmds.h"
|
|
|
|
int cmd_version(int argc, char *argv[])
|
|
{
|
|
printf("bcachefs tool version %s\n", VERSION_STRING);
|
|
return 0;
|
|
}
|