diff options
Diffstat (limited to 'src/include/part/hard_reset.h')
-rw-r--r-- | src/include/part/hard_reset.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/include/part/hard_reset.h b/src/include/part/hard_reset.h new file mode 100644 index 0000000000..fd1bf62c44 --- /dev/null +++ b/src/include/part/hard_reset.h @@ -0,0 +1,11 @@ +#ifndef PART_HARD_RESET_H +#define PART_HARD_RESET_H + +#if HAVE_HARD_RESET == 1 +void hard_reset(void); +#else +#define hard_reset() do {} while(0) +#endif + + +#endif |