mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-12 12:07:12 +08:00
Avoid warning about comma at end of enum for !_GNU_SOURCE.
This commit is contained in:
parent
046f02be6f
commit
6f68ec79d2
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1997, 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -71,9 +71,10 @@ enum
|
||||
{
|
||||
ST_RDONLY = 1, /* Mount read-only. */
|
||||
#define ST_RDONLY ST_RDONLY
|
||||
ST_NOSUID = 2, /* Ignore suid and sgid bits. */
|
||||
ST_NOSUID = 2 /* Ignore suid and sgid bits. */
|
||||
#define ST_NOSUID ST_NOSUID
|
||||
#ifdef __USE_GNU
|
||||
,
|
||||
ST_NODEV = 4, /* Disallow access to device special files. */
|
||||
# define ST_NODEV ST_NODEV
|
||||
ST_NOEXEC = 8, /* Disallow program execution. */
|
||||
|
Loading…
Reference in New Issue
Block a user