diff options
Diffstat (limited to 'winsup/cygwin/include/mntent.h')
-rw-r--r-- | winsup/cygwin/include/mntent.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/winsup/cygwin/include/mntent.h b/winsup/cygwin/include/mntent.h index c284cc7c6..8ad270ba0 100644 --- a/winsup/cygwin/include/mntent.h +++ b/winsup/cygwin/include/mntent.h @@ -1,6 +1,6 @@ /* mntent.h - Copyright 1996, 1998, 1999, 2000, 2001, 2006, 2009 Red Hat, Inc. + Copyright 1996, 1998, 1999, 2000, 2001, 2006, 2009, 2010 Red Hat, Inc. This file is part of Cygwin. @@ -15,6 +15,8 @@ details. */ extern "C" { #endif +#include <paths.h> + struct mntent { char *mnt_fsname; @@ -32,12 +34,17 @@ struct mntent *getmntent (FILE *__filep); int endmntent (FILE *__filep); #endif +/* The following two defines are deprecated. Use the equivalent + names from paths.h instead. */ +#ifndef MNTTAB +#define MNTTAB _PATH_MNTTAB +#endif /* This next file does exist, but the implementation of these functions does not actually use it. However, applications need the define to pass to setmntent(). */ #ifndef MOUNTED -#define MOUNTED "/etc/mtab" +#define MOUNTED _PATH_MOUNTED #endif #ifdef __cplusplus |