~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to uspace/app/mkexfat/mkexfat.c

  • Committer: Jiri Svoboda
  • Date: 2012-11-11 21:31:03 UTC
  • mfrom: (1527.1.178 mainline)
  • Revision ID: jiri@wiwaxia-20121111213103-314bmkettwvlwj97
Merge mainline changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 */
38
38
 
39
39
#include <stdio.h>
40
 
#include <libblock.h>
 
40
#include <block.h>
41
41
#include <assert.h>
42
42
#include <errno.h>
43
43
#include <malloc.h>
48
48
#include <bool.h>
49
49
#include <str.h>
50
50
#include <getopt.h>
 
51
#include <macros.h>
51
52
#include "exfat.h"
52
53
#include "upcase.h"
53
54
 
86
87
/** Index of the first free cluster on the device */
87
88
#define FIRST_FREE_CLUSTER   2
88
89
 
89
 
#define min(x, y) ((x) < (y) ? (x) : (y))
90
90
 
91
91
typedef struct exfat_cfg {
92
92
        aoff64_t volume_start;