Ignore:
File:
1 edited

Legend:

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

    r3e6a98c5 rdf4fbe1  
    3838
    3939#include <stdio.h>
    40 #include <block.h>
     40#include <libblock.h>
    4141#include <assert.h>
    4242#include <errno.h>
     
    4646#include <sys/types.h>
    4747#include <sys/typefmt.h>
    48 #include <stdbool.h>
     48#include <bool.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.