Fix typo in gdb.python/py-objfile.exp
[deliverable/binutils-gdb.git] / gdb / linux-nat.h
index 3d766b55131f18afde54cd39e35b4592801ffd0f..cae263a6d6f3a382ebf44cb303b1c2df1b891af5 100644 (file)
@@ -116,7 +116,8 @@ struct lwp_info
 extern struct lwp_info *lwp_list;
 
 /* Does the current host support PTRACE_GETREGSET?  */
-extern int have_ptrace_getregset;
+enum tribool { TRIBOOL_UNKNOWN = -1, TRIBOOL_FALSE = 0, TRIBOOL_TRUE = 1 };
+extern enum tribool have_ptrace_getregset;
 
 /* Iterate over each active thread (light-weight process).  */
 #define ALL_LWPS(LP)                                                   \
This page took 0.024965 seconds and 4 git commands to generate.