1
0
Fork 0
zig-mtd/mtd-magic.c

11 lines
219 B
C

#include <stdio.h>
#include <sys/ioctl.h>
#include <mtd/mtd-user.h>
int main(void) {
size_t e = MEMERASE, u = MEMUNLOCK;
printf("const MEMERASE = %lu;\n", e);
printf("const MEMUNLOCK = %lu;\n", u);
return 0;
}