diff options
author | Christopher Faylor <me@cgf.cx> | 2000-08-22 15:12:29 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-08-22 15:12:29 +0000 |
commit | d6483e830fc9b3636a1ac2c4638d770ca01e43cc (patch) | |
tree | 2b4f0908e2150343f97ae0c99ca9c459cdabe2ab /winsup/cygwin/include | |
parent | bccd5e0d8530b8ba4d5388d7de6a86c0267e5be8 (diff) | |
download | cygnal-d6483e830fc9b3636a1ac2c4638d770ca01e43cc.tar.gz cygnal-d6483e830fc9b3636a1ac2c4638d770ca01e43cc.tar.bz2 cygnal-d6483e830fc9b3636a1ac2c4638d770ca01e43cc.zip |
* include/sys/cygwin.h: Declare some thread classes.
* include/mntent.h: Avoid declaring functions.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/mntent.h | 2 | ||||
-rw-r--r-- | winsup/cygwin/include/sys/cygwin.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/include/mntent.h b/winsup/cygwin/include/mntent.h index 0f0580a8e..eaab27031 100644 --- a/winsup/cygwin/include/mntent.h +++ b/winsup/cygwin/include/mntent.h @@ -15,11 +15,13 @@ struct mntent int mnt_passno; }; +#ifndef _NOMNTENT_FUNCS FILE *setmntent (const char *__filep, const char *__type); struct mntent *getmntent (FILE *__filep); int addmntent (FILE *__filep, const struct mntent *__mnt); int endmntent (FILE *__filep); char *hasmntopt (const struct mntent *__mnt, const char *__opt); +#endif /* This next file doesn't exist, it is in the registry, however applications need the define to pass to diff --git a/winsup/cygwin/include/sys/cygwin.h b/winsup/cygwin/include/sys/cygwin.h index 8d7b5d433..d6d83eb60 100644 --- a/winsup/cygwin/include/sys/cygwin.h +++ b/winsup/cygwin/include/sys/cygwin.h @@ -109,6 +109,9 @@ enum SIZEOF_PER_PROCESS) to make sure you remember to make the adjustment. */ +class ResourceLocks; +class MTinterface; + struct per_process { char *initial_sp; |