* defs.h (auto_boolean): Declare enum.
[deliverable/binutils-gdb.git] / gdb / defs.h
index ab66d73118226974df3f37771d589a996ee4935e..e7698b55860110e468a6a04dccadb06364864f2f 100644 (file)
@@ -222,6 +222,14 @@ enum precision_type
     unspecified_precision
   };
 
+/* A generic, not quite boolean, enumeration.  */
+enum auto_boolean
+{
+  AUTO_BOOLEAN_TRUE,
+  AUTO_BOOLEAN_FALSE,
+  AUTO_BOOLEAN_AUTO
+};
+
 /* the cleanup list records things that have to be undone
    if an error happens (descriptors to be closed, memory to be freed, etc.)
    Each link in the chain records a function to call and an
This page took 0.028343 seconds and 4 git commands to generate.