diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-01-18 23:37:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-01-18 23:37:53 +0000 |
commit | 6f68ec79d24c6b364c3b97d45133b8ee419c752b (patch) | |
tree | 230e6cecdea74360edc1dd0e8562d4f4cb30e608 /sysdeps/unix | |
parent | 046f02be6f9c5d813a32dea6c1c0cdf49706f18a (diff) | |
download | glibc-6f68ec79d24c6b364c3b97d45133b8ee419c752b.tar glibc-6f68ec79d24c6b364c3b97d45133b8ee419c752b.tar.gz glibc-6f68ec79d24c6b364c3b97d45133b8ee419c752b.tar.bz2 glibc-6f68ec79d24c6b364c3b97d45133b8ee419c752b.zip |
Avoid warning about comma at end of enum for !_GNU_SOURCE.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/bits/statvfs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/statvfs.h b/sysdeps/unix/sysv/linux/alpha/bits/statvfs.h index d37d0ffcb6..6120cf7a1d 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/statvfs.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/statvfs.h @@ -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. */ |