mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-13 09:57:03 +00:00
14 lines
283 B
C
14 lines
283 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "kerncompat.h"
|
|
#include "radix-tree.h"
|
|
#include "ctree.h"
|
|
#include "disk-io.h"
|
|
#include "transaction.h"
|
|
|
|
int btrfs_create_file(struct btrfs_trans_handle *trans,
|
|
struct btrfs_root *root, u64 dirid, u64 *objectid)
|
|
{
|
|
return 0;
|
|
}
|