Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkexfat/mkexfat.c

    rbc216a0 rf73b291  
    3838
    3939#include <stdio.h>
    40 #include <libblock.h>
     40#include <block.h>
    4141#include <assert.h>
    4242#include <errno.h>
     
    4949#include <str.h>
    5050#include <getopt.h>
    51 #include <macros.h>
    5251#include "exfat.h"
    5352#include "upcase.h"
     
    8887#define FIRST_FREE_CLUSTER   2
    8988
     89#define min(x, y) ((x) < (y) ? (x) : (y))
    9090
    9191typedef struct exfat_cfg {
Note: See TracChangeset for help on using the changeset viewer.