diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-01-04 14:09:28 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-01-04 14:09:28 +0000 |
commit | 3605272b0a7a255f8cc252e76c45d982fa7ae9f6 (patch) | |
tree | 41777a659f07d261525c30df57238bb433d75694 /compat_ohash.h | |
parent | 5c070be20add59873701368a2033d7d993a416d6 (diff) | |
download | mandoc-3605272b0a7a255f8cc252e76c45d982fa7ae9f6.tar.gz |
Use C99 uint32_t, not BSD-style u_int32_t.
Needed for Solaris 10 as reported by Matthias Scheler.
Diffstat (limited to 'compat_ohash.h')
-rw-r--r-- | compat_ohash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat_ohash.h b/compat_ohash.h index 85cf9114..9099adc5 100644 --- a/compat_ohash.h +++ b/compat_ohash.h @@ -65,7 +65,7 @@ void *ohash_next(struct ohash *, unsigned int *); unsigned int ohash_entries(struct ohash *); void *ohash_create_entry(struct ohash_info *, const char *, const char **); -u_int32_t ohash_interval(const char *, const char **); +uint32_t ohash_interval(const char *, const char **); unsigned int ohash_qlookupi(struct ohash *, const char *, const char **); unsigned int ohash_qlookup(struct ohash *, const char *); |