11 lines
219 B
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;
|
||
|
}
|