Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2002-10-03 04:49:21 +0400
committerDanny Smith <dannysmith@users.sourceforge.net>2002-10-03 04:49:21 +0400
commit7c3de623b662e2dc389c005022fa59f4df626cce (patch)
treed0f5c19010d77348bf4ba73d74d7b254e4a6e43a
parent14ab3f24e17b714e79e78108b1d0733e85f0e951 (diff)
* include/fcntl.h (_fmode): Remove declarations and
compatibility defines. (_setmode, setmode): Remove prototypes. * include/stdlib (_fmode): Add declarations and compatibility defines. Change type to int. * include/io.h (_setmode, setmode): Add prototypes. * samples/fmode/all.c: Adjust includes. * samples/fmode/test.c: Likewise. * crt1.c (_CRT_fmode): Declare as int. * CRTfmode.c (_CRT_fmode): Likewise. * include/stdlib: Remove comment about MB_CUR_MAX.
-rw-r--r--winsup/mingw/CRTfmode.c2
-rw-r--r--winsup/mingw/ChangeLog17
-rw-r--r--winsup/mingw/crt1.c2
-rw-r--r--winsup/mingw/include/fcntl.h46
-rw-r--r--winsup/mingw/include/io.h2
-rw-r--r--winsup/mingw/include/stdlib.h29
-rw-r--r--winsup/mingw/samples/fmode/all.c5
-rw-r--r--winsup/mingw/samples/fmode/test.c3
8 files changed, 53 insertions, 53 deletions
diff --git a/winsup/mingw/CRTfmode.c b/winsup/mingw/CRTfmode.c
index d0db222f0..c3f2a444c 100644
--- a/winsup/mingw/CRTfmode.c
+++ b/winsup/mingw/CRTfmode.c
@@ -17,4 +17,4 @@
*
*/
-unsigned int _CRT_fmode = 0;
+int _CRT_fmode = 0;
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog
index fab69a7fd..a52b75ec6 100644
--- a/winsup/mingw/ChangeLog
+++ b/winsup/mingw/ChangeLog
@@ -1,6 +1,21 @@
+2002-10-03 Danny Smith <dannysmith@users.sourceforge.net>
+
+ * include/fcntl.h (_fmode): Remove declarations and
+ compatibility defines.
+ (_setmode, setmode): Remove prototypes.
+ * include/stdlib (_fmode): Add declarations and
+ compatibility defines. Change type to int.
+ * include/io.h (_setmode, setmode): Add prototypes.
+ * samples/fmode/all.c: Adjust includes.
+ * samples/fmode/test.c: Likewise.
+ * crt1.c (_CRT_fmode): Declare as int.
+ * CRTfmode.c (_CRT_fmode): Likewise.
+
+ * include/stdlib: Remove comment about MB_CUR_MAX.
+
2002-10-02 Danny Smith <dannysmith@users.sourceforge.net>
- * include/stdlib.h (_imp____mbcur_max): add missing ';'.
+ * include/stdlib.h (_imp____mbcur_max): Add missing ';'.
(_imp____mbcur_max_dll): Likewise.
2002-09-18 Danny Smith <dannysmith@users.sourceforge.net>
diff --git a/winsup/mingw/crt1.c b/winsup/mingw/crt1.c
index a11c2fb03..07aa9c5d4 100644
--- a/winsup/mingw/crt1.c
+++ b/winsup/mingw/crt1.c
@@ -59,7 +59,7 @@ __MINGW_IMPORT void __set_app_type(int);
* Setup the default file handles to have the _CRT_fmode mode, as well as
* any new files created by the user.
*/
-extern unsigned int _CRT_fmode;
+extern int _CRT_fmode;
static void
_mingw32_init_fmode ()
diff --git a/winsup/mingw/include/fcntl.h b/winsup/mingw/include/fcntl.h
index 7b7a8cb2a..add43ff0e 100644
--- a/winsup/mingw/include/fcntl.h
+++ b/winsup/mingw/include/fcntl.h
@@ -85,52 +85,6 @@
#endif /* Not _NO_OLDNAMES */
-
-#ifndef RC_INVOKED
-
-/*
- * This variable determines the default file mode.
- * TODO: Which flags work?
- */
-#ifndef __DECLSPEC_SUPPORTED
-
-#ifdef __MSVCRT__
-extern unsigned int* _imp___fmode;
-#define _fmode (*_imp___fmode)
-#else
-/* CRTDLL */
-extern unsigned int* _imp___fmode_dll;
-#define _fmode (*_imp___fmode_dll)
-#endif
-
-#else /* __DECLSPEC_SUPPORTED */
-
-#ifdef __MSVCRT__
-__MINGW_IMPORT unsigned int _fmode;
-#else /* ! __MSVCRT__ */
-__MINGW_IMPORT unsigned int _fmode_dll;
-#define _fmode _fmode_dll
-#endif /* ! __MSVCRT__ */
-
-#endif /* __DECLSPEC_SUPPORTED */
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-int _setmode (int, int);
-
-#ifndef _NO_OLDNAMES
-int setmode (int, int);
-#endif /* Not _NO_OLDNAMES */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* Not RC_INVOKED */
-
#endif /* Not _FCNTL_H_ */
#endif /* Not __STRICT_ANSI__ */
diff --git a/winsup/mingw/include/io.h b/winsup/mingw/include/io.h
index 84014c794..288c3dc16 100644
--- a/winsup/mingw/include/io.h
+++ b/winsup/mingw/include/io.h
@@ -212,6 +212,7 @@ int _open (const char*, int, ...);
int _open_osfhandle (long, int);
int _pipe (int *, unsigned int, int);
int _read (int, void*, unsigned int);
+int _setmode (int, int);
/* SH_... flags for nShFlags defined in share.h
* Optional fourth argument is unsigned unPermissions */
@@ -262,6 +263,7 @@ int isatty (int);
long lseek (int, long, int);
int open (const char*, int, ...);
int read (int, void*, unsigned int);
+int setmode (int, int);
int sopen (const char*, int, int, ...);
long tell (int);
int umask (int);
diff --git a/winsup/mingw/include/stdlib.h b/winsup/mingw/include/stdlib.h
index 50a0f8178..468bac1af 100644
--- a/winsup/mingw/include/stdlib.h
+++ b/winsup/mingw/include/stdlib.h
@@ -120,8 +120,6 @@ __MINGW_IMPORT char** __argv_dll;
/*
* Also defined in ctype.h.
*/
-
-/* Also defined in stdlib.h */
#ifndef MB_CUR_MAX
#ifdef __DECLSPEC_SUPPORTED
# ifdef __MSVCRT__
@@ -142,6 +140,7 @@ __MINGW_IMPORT char** __argv_dll;
# endif /* not __MSVCRT */
#endif /* __DECLSPEC_SUPPORTED */
#endif /* MB_CUR_MAX */
+
/*
* MS likes to declare errno in stdlib.h as well.
*/
@@ -281,6 +280,32 @@ wchar_t** __p__wpgmptr(void);
/* no wide version in CRTDLL */
#endif /* __MSVCRT__ */
+/*
+ * This variable determines the default file mode.
+ * TODO: Which flags work?
+ */
+#ifndef __DECLSPEC_SUPPORTED
+
+#ifdef __MSVCRT__
+extern int* _imp___fmode;
+#define _fmode (*_imp___fmode)
+#else
+/* CRTDLL */
+extern int* _imp___fmode_dll;
+#define _fmode (*_imp___fmode_dll)
+#endif
+
+#else /* __DECLSPEC_SUPPORTED */
+
+#ifdef __MSVCRT__
+__MINGW_IMPORT int _fmode;
+#else /* ! __MSVCRT__ */
+__MINGW_IMPORT int _fmode_dll;
+#define _fmode _fmode_dll
+#endif /* ! __MSVCRT__ */
+
+#endif /* __DECLSPEC_SUPPORTED */
+
#endif /* Not __STRICT_ANSI__ */
#ifdef __GNUC__
diff --git a/winsup/mingw/samples/fmode/all.c b/winsup/mingw/samples/fmode/all.c
index a6f7d51f7..f052b9306 100644
--- a/winsup/mingw/samples/fmode/all.c
+++ b/winsup/mingw/samples/fmode/all.c
@@ -13,7 +13,10 @@
*/
#include <stdio.h>
-#include <fcntl.h>
+#include <stdlib.h> /* _fmode */
+#include <fcntl.h> /* _O_BINARY */
+#include <io.h> /* _setmode */
+
unsigned int _CRT_fmode = _O_BINARY;
diff --git a/winsup/mingw/samples/fmode/test.c b/winsup/mingw/samples/fmode/test.c
index b0488b2ea..0ec364534 100644
--- a/winsup/mingw/samples/fmode/test.c
+++ b/winsup/mingw/samples/fmode/test.c
@@ -9,7 +9,8 @@
*/
#include <stdio.h>
-#include <fcntl.h> /* Required to get _fmode and _O_BINARY */
+#include <stdlib.h> /* _fmode */
+#include <fcntl.h> /* _O_BINARY */
main ()
{