2007-03-15 23:03:33 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "kerncompat.h"
|
|
|
|
#include "radix-tree.h"
|
|
|
|
#include "ctree.h"
|
|
|
|
#include "disk-io.h"
|
2007-03-20 18:38:32 +00:00
|
|
|
#include "transaction.h"
|
2007-03-15 23:03:33 +00:00
|
|
|
|
2007-03-20 18:38:32 +00:00
|
|
|
int btrfs_create_file(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, u64 dirid, u64 *objectid)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|