> On 26 May 2020, at 16:52, Rasmus Villemoes <r...@rasmusvillemoes.dk> wrote: > > _VXW_PRE_69 was introduced in 806dd0472f, then replaced by > _VXWORKS_PRE(6,9) in abb6c3eecf, but this one was missed. > > Fixes: abb6c3eecf (Introduce an internal API for VxWorks version checks) > --- > libgcc/config/gthr-vxworks.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libgcc/config/gthr-vxworks.h b/libgcc/config/gthr-vxworks.h > index 8b55fc55407..e38174730bf 100644 > --- a/libgcc/config/gthr-vxworks.h > +++ b/libgcc/config/gthr-vxworks.h > @@ -286,7 +286,7 @@ typedef struct > typedef __gthread_tcb *__gthread_t; > > /* Typedefs specific to different vxworks versions. */ > -#if _VXW_PRE_69 > +#if _VXWORKS_PRE(6,9) > typedef int _Vx_usr_arg_t; > #define TASK_ID_NULL ((TASK_ID)NULL) > #define SEM_ID_NULL ((SEM_ID)NULL)
Ok, thanks. Olivier