* include/mntent.h: Add missing #include.

This commit is contained in:
Christopher Faylor 2006-02-13 19:01:32 +00:00
parent 462c98e96a
commit 49bc9a6939
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-02-13 Igor Peshansky <pechtcha@cs.nyu.edu>
* include/mntent.h: Add missing #include.
2006-02-13 Igor Peshansky <pechtcha@cs.nyu.edu> 2006-02-13 Igor Peshansky <pechtcha@cs.nyu.edu>
* gentls_offsets: Fix typo in error message. * gentls_offsets: Fix typo in error message.

View File

@ -1,6 +1,6 @@
/* mntent.h /* mntent.h
Copyright 1996, 1998, 1999, 2000, 2001 Red Hat, Inc. Copyright 1996, 1998, 1999, 2000, 2001, 2006 Red Hat, Inc.
This file is part of Cygwin. This file is part of Cygwin.
@ -26,6 +26,7 @@ struct mntent
}; };
#ifndef _NOMNTENT_FUNCS #ifndef _NOMNTENT_FUNCS
#include <stdio.h>
FILE *setmntent (const char *__filep, const char *__type); FILE *setmntent (const char *__filep, const char *__type);
struct mntent *getmntent (FILE *__filep); struct mntent *getmntent (FILE *__filep);
int addmntent (FILE *__filep, const struct mntent *__mnt); int addmntent (FILE *__filep, const struct mntent *__mnt);