summaryrefslogtreecommitdiffstats
path: root/src/include/part/hard_reset.h
blob: cbfc747d1e72cfa25732d00f25fd9d317c0b4d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef PART_HARD_RESET_H
#define PART_HARD_RESET_H

#if CONFIG_HAVE_HARD_RESET == 1
void hard_reset(void);
#else
#define hard_reset() do {} while(0)
#endif


#endif