diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2024-06-20 08:11:38 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2024-06-20 08:11:38 +0000 |
commit | 24fa7a5107c5b75d1c197accf0305be64bc72882 (patch) | |
tree | 183f09c93417ac0e5f7f49760329a3d2cfaacda9 /progs/dump_entry.h | |
parent | bf0ab54638a5ef969749f6ceae30e864f9556ea8 (diff) |
Diffstat (limited to 'progs/dump_entry.h')
-rw-r--r-- | progs/dump_entry.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/progs/dump_entry.h b/progs/dump_entry.h index 98551914cd63..39e856fb6171 100644 --- a/progs/dump_entry.h +++ b/progs/dump_entry.h @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright 2018,2020 Thomas E. Dickey * + * Copyright 2018-2020,2021 Thomas E. Dickey * * Copyright 1998-2016,2017 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * @@ -34,7 +34,7 @@ ****************************************************************************/ /* - * $Id: dump_entry.h,v 1.43 2020/11/14 18:16:57 tom Exp $ + * $Id: dump_entry.h,v 1.44 2021/04/18 19:56:09 tom Exp $ * * Dump control definitions and variables */ @@ -67,8 +67,11 @@ #define CMP_STRING 2 /* comparison on strings */ #define CMP_USE 3 /* comparison on use capabilities */ +#ifndef _TERMSORT_H typedef unsigned PredType; typedef unsigned PredIdx; +#endif + typedef int (*PredFunc) (PredType, PredIdx); typedef void (*PredHook) (PredType, PredIdx, const char *); |