X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fcommon%2Fcommon-types.h;h=efeb0db46c9fc9969aa91c02b257c866f4f8544f;hb=c5ac15402a894e87a118526a066880f596b3c78d;hp=55b41abb8fc38a5f9336a7e4a9cd58ebd35fca2c;hpb=32d0add0a654c1204ab71dc8a55d9374538c4b33;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/common/common-types.h b/gdb/common/common-types.h index 55b41abb8f..efeb0db46c 100644 --- a/gdb/common/common-types.h +++ b/gdb/common/common-types.h @@ -1,6 +1,6 @@ /* Declarations for common types. - Copyright (C) 1986-2015 Free Software Foundation, Inc. + Copyright (C) 1986-2016 Free Software Foundation, Inc. This file is part of GDB. @@ -58,4 +58,6 @@ typedef unsigned long long ULONGEST; /* * The largest CORE_ADDR value. */ #define CORE_ADDR_MAX (~ (CORE_ADDR) 0) +enum tribool { TRIBOOL_UNKNOWN = -1, TRIBOOL_FALSE = 0, TRIBOOL_TRUE = 1 }; + #endif /* COMMON_TYPES_H */