diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-04-24 21:10:38 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-04-24 22:49:03 +0200 |
commit | 287e808d5dc65165ceda5978976121938336f7c2 (patch) | |
tree | fb9e11b0b73b58d89c2dda1fb680c739715b8257 /ghw | |
parent | 7ce1d1bc27999054c221fc9e97449fcb086e8e88 (diff) | |
download | ghdl-287e808d5dc65165ceda5978976121938336f7c2.tar.gz ghdl-287e808d5dc65165ceda5978976121938336f7c2.tar.bz2 ghdl-287e808d5dc65165ceda5978976121938336f7c2.zip |
ghw: rename define from '_GHWLIB_H_' to '_LIBGHW_H_'
Diffstat (limited to 'ghw')
-rw-r--r-- | ghw/libghw.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ghw/libghw.h b/ghw/libghw.h index 3efa65721..a6d22d0c0 100644 --- a/ghw/libghw.h +++ b/ghw/libghw.h @@ -15,8 +15,8 @@ along with this program. If not, see <gnu.org/licenses>. */ -#ifndef _GHWLIB_H_ -#define _GHWLIB_H_ +#ifndef _LIBGHW_H_ +#define _LIBGHW_H_ #include <stdio.h> #include <stdlib.h> @@ -26,7 +26,7 @@ #include "config.h" #endif -/* The ghwlib uses the standard c99 int32_t and int64_t. They are declared +/* The libghw uses the standard c99 int32_t and int64_t. They are declared in stdint.h. Header inttypes.h includes stdint.h and provides macro for printf and co specifiers. Use it if known to be available. */ @@ -468,4 +468,4 @@ void ghw_disp_range (union ghw_type *type, union ghw_range *rng); void ghw_disp_type (struct ghw_handler *h, union ghw_type *t); void ghw_disp_types (struct ghw_handler *h); -#endif /* _GHWLIB_H_ */ +#endif /* _LIBGHW_H_ */ |