File: plain40_repair.c

package info (click to toggle)
reiser4progs 1.0.6-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,348 kB
  • ctags: 3,714
  • sloc: ansic: 33,468; sh: 8,489; makefile: 1,012
file content (16 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright 2001-2005 by Hans Reiser, licensing governed by
   reiser4progs/COPYING.
   
   plain40_repair.c -- reiser4 plain tail item plugin repair functions. */

#ifndef ENABLE_MINIMAL

#include "plain40.h"
#include <plugin/item/tail40/tail40_repair.h>

errno_t plain40_prep_insert_raw(reiser4_place_t *place, trans_hint_t *hint) {
	place->off = 0;
	return tail40_prep_insert_raw(place, hint);
}

#endif