diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-06-20 09:31:10 +0545 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-06-21 13:33:27 -0400 |
commit | 618b526e31d3df71e9526a0753271624a568564e (patch) | |
tree | 46637ede081e381cdb3f4ceff69a40a7b3cf9c80 /sim/common/sim-assert.h | |
parent | 02db4b0a9f80505adaef9f547e8c069adfe63e36 (diff) | |
download | gdb-618b526e31d3df71e9526a0753271624a568564e.zip gdb-618b526e31d3df71e9526a0753271624a568564e.tar.gz gdb-618b526e31d3df71e9526a0753271624a568564e.tar.bz2 |
sim: common: standardize multiple include defines
We use SIM_xxx_H in most headers, so convert _SIM_xxx_H_ over to it.
Diffstat (limited to 'sim/common/sim-assert.h')
-rw-r--r-- | sim/common/sim-assert.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/common/sim-assert.h b/sim/common/sim-assert.h index eaaf791..e7ccd52 100644 --- a/sim/common/sim-assert.h +++ b/sim/common/sim-assert.h @@ -18,8 +18,8 @@ */ -#ifndef _SIM_ASSERT_H_ -#define _SIM_ASSERT_H_ +#ifndef SIM_ASSERT_H +#define SIM_ASSERT_H #define SIM_FILTER_PATH(FILE, PATH) \ do \ |