]> git.ipfire.org Git - thirdparty/man-pages.git/commit
grepc: Fix glitch with incorrectly indented code
authorAlejandro Colomar <alx.manpages@gmail.com>
Tue, 24 May 2022 22:05:20 +0000 (00:05 +0200)
committerAlejandro Colomar <alx@kernel.org>
Wed, 29 Oct 2025 20:29:07 +0000 (21:29 +0100)
commitc882d67136f31d568a6676cbcd3747625a528dfa
tree19296ad5c7a88fa3fd81f48934edc050c23c06c3
parent1c10b544d511fe78879a4471affc6913612eea52
grepc: Fix glitch with incorrectly indented code

Avoid this glich from glibc:

./sysdeps/unix/sysv/linux/x86/sys/ucontext.h:133:
typedef struct
  {
    gregset_t __ctx(gregs);
    /* Note that fpregs is a pointer.  */
    fpregset_t __ctx(fpregs);
    __extension__ unsigned long long __reserved1 [8];
} mcontext_t;

/* Userlevel context.  */
typedef struct ucontext_t
  {
    unsigned long int __ctx(uc_flags);
    struct ucontext_t *uc_link;
    stack_t uc_stack;
    mcontext_t uc_mcontext;
    sigset_t uc_sigmask;
    struct _libc_fpstate __fpregs_mem;
    __extension__ unsigned long long int __ssp[4];
  } ucontext_t;

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
bin/grepc