BZ #16529: Fix pedantic warning with netinet/in.h.
commit3bfff2edbef578746211ba231f3942efffd38f86
authorCarlos O'Donell <carlos@redhat.com>
Thu, 6 Feb 2014 16:12:48 +0000 (6 11:12 -0500)
committerCarlos O'Donell <carlos@redhat.com>
Thu, 6 Feb 2014 16:18:51 +0000 (6 11:18 -0500)
tree27829eb3718ecb278c8190a916eeea1546a8aa8f
parentee7cc3853761fc00b6bbcdc09b3d8a56695dd7a6
BZ #16529: Fix pedantic warning with netinet/in.h.

When compiling with pedantic the following warning is seen:

gcc -Wall -pedantic -O0 -o test test.c
In file included from test.c:3:0:
/path/inet/netinet/in.h:111:21: warning: comma at end of \
enumerator list [-Wpedantic]
     IPPROTO_MH = 135,      /* IPv6 mobility header.  */
                     ^

It is valid C99 to have a trailing comma after the last item in
an enumeration. However it is not valid C90. If possible glibc
attempts to keep all headers C90 + long long without requiring
C99 features. In this case it's easy to fix the headers and it
removes the warning seem with -pedantic.
ChangeLog
NEWS
inet/netinet/in.h