os/kernel/cpu/halt.h
2020-07-25 16:54:37 -05:00

14 lines
142 B
C

/**
* \file
*/
#ifndef HALT_H
#define HALT_H
/**
* Clear interrupts and halt the CPU,
*/
void halt() __attribute__((noreturn));
#endif