11 lines
165 B
C
11 lines
165 B
C
|
/* Copyright (c) 2024 Freya Murphy */
|
||
|
|
||
|
#ifndef __FAULT_H__
|
||
|
#define __FAULT_H__
|
||
|
|
||
|
#include "sim.h"
|
||
|
|
||
|
void init_handlers(struct simulator *s);
|
||
|
|
||
|
#endif /* __FAULT_H__ */
|