]> sourceware.org Git - glibc.git/commitdiff
{nptl,htl}/semaphoreP.h: clean up
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Wed, 16 Dec 2020 13:36:19 +0000 (14:36 +0100)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Wed, 16 Dec 2020 13:51:14 +0000 (14:51 +0100)
This removes "Contributed by", and uses a C99 flexible array instead of
char name[0];

htl/semaphoreP.h
nptl/semaphoreP.h

index 22732122b01790260e5d83ffe0b3abe6fd84611a..8d8d9d8897927f5d5e5d1d31b1a3946da82c2997 100644 (file)
@@ -1,6 +1,6 @@
 /* Copyright (C) 2002-2020 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
-   Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
+   Ulrich Drepper <drepper@redhat.com>, 2002.
 
    The GNU C Library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
@@ -28,7 +28,7 @@ struct inuse_sem
   ino_t ino;
   int refcnt;
   sem_t *sem;
-  char name[0];
+  char name[];
 };
 
 
index 2f8757e1f0760503a003595a7c8af129356471cc..8d67e41cf38199439a1585f1aecd062dbb916a93 100644 (file)
@@ -1,6 +1,6 @@
 /* Copyright (C) 2002-2020 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
-   Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
+   Ulrich Drepper <drepper@redhat.com>, 2002.
 
    The GNU C Library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
@@ -29,7 +29,7 @@ struct inuse_sem
   ino_t ino;
   int refcnt;
   sem_t *sem;
-  char name[0];
+  char name[];
 };
 
 
This page took 0.042816 seconds and 5 git commands to generate.