Changes in uspace/app/mkexfat/mkexfat.c [062d900:f73b291] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkexfat/mkexfat.c
r062d900 rf73b291 49 49 #include <str.h> 50 50 #include <getopt.h> 51 #include <macros.h>52 51 #include "exfat.h" 53 52 #include "upcase.h" … … 88 87 #define FIRST_FREE_CLUSTER 2 89 88 89 #define min(x, y) ((x) < (y) ? (x) : (y)) 90 90 91 91 typedef struct exfat_cfg {
Note:
See TracChangeset
for help on using the changeset viewer.