* CONTRIBUTORS: New file.

* DISCLAIMER: Ditto.
	* CRT_noglob.c: Reword copyright and disclaimer.  Move Contributors
	section CONTRIBUTORS file.  Remove RCS tags.
	* CRTFmode.c: Ditto.
	* CRTglob.c: Ditto.
	* CRTinit.c: Ditto.
	* crt1.c: Ditto.
	* crtdll.dev: Ditto.
	* dllcrt1.c: Ditto.
	* dllmain.c: Ditto.
	* gccmain.c: Ditto.
	* init.c: Ditto.
	* isascii.c: Ditto.
	* iscsym.c: Ditto.
	* iscsymf.c: Ditto.
	* jamfile: Ditto.
	* main.c: Ditto.
	* msvcrt.def.in: Ditto.
	* strcasecmp.c: Ditto.
	* toascii.c: Ditto.
	* wcscmpi.c: Ditto.
	* include/assert.h: Ditto.
	* include/conio.h: Ditto.
	* include/ctype.h: Ditto.
	* include/direct.h: Ditto.
	* include/dirent.h: Ditto.
	* include/dos.h: Ditto.
	* include/errno.h: Ditto.
	* include/excpt.h: Ditto.
	* include/fcntl.h: Ditto.
	* include/float.h: Ditto.
	* include/io.h: Ditto.
	* include/locale.h: Ditto.
	* include/malloc.h: Ditto.
	* include/math.h: Ditto.
	* include/process.h: Ditto.
	* include/setjmp.h: Ditto.
	* include/share.h: Ditto.
	* include/signal.h: Ditto.
	* include/stdio.h: Ditto.
	* include/stdlib.h: Ditto.
	* include/string.h: Ditto.
	* include/tchar.h: Ditto.
	* include/time.h: Ditto.
	* include/wchar.h: Ditto.
	* include/sys/locking.h: Ditto.
	* include/sys/param.h: Ditto.
	* include/sys/stat.h: Ditto.
	* include/sys/timeb.h: Ditto.
	* include/sys/types.h: Ditto.
	* include/sys/utime.h: Ditto.
	* mingwex/dirent.c: Ditto.
This commit is contained in:
Earnie Boyd 2004-04-20 22:49:32 +00:00
parent f4a395ef78
commit 4d6c899474
53 changed files with 269 additions and 868 deletions

28
winsup/mingw/CONTRIBUTORS Normal file
View File

@ -0,0 +1,28 @@
/*
* CONTRIBUTORS
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
*
* HISTORICAL:
* Colin Peters <colin@fu.is.saga-u.ac.jp> - Original author of the
* mingw-runtime package.
* Mumit Khan <khan@xraylith.wisc.EDU> - Original maintainer of the
* mingw-runtime package.
* Gunther Ebert <gunther.ebert@ixos-leipzig.de> - Adaptations of his DLL
* support.
* Stan Cox <scox@cygnus.com> - Provided gccmain.c.
* J.J. van der Heijden <J.J.vanderHeijden@student.utwente.nl> - Provided
* dos.h.
* Mikey <jeffdb@netzone.com> - Adaptated excpt.h from his code.
* Pedro A. Aranda <paag@tid.es> - Provided lots of types for types.h.
*
* CURRENT:
* Danny Smith <dannysmith@users.sourceforge.net>
* Earnie Boyd <earnie@users.sourceforge.net>
* Luke Dunstan <coder_infidel@users.sourceforge.net>
*
* Many others in the MinGW user community. They are listed in the ChangeLog.
* Please review that file for the names of those contributors.
*
*/

View File

@ -1,16 +1,14 @@
/* /*
* noglob.c * CRT_noglob.c
* This file has no copyright is assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* This file defines _CRT_glob to have a value of 0, which will * Include this object file to set _CRT_glob to a state that will turn off
* turn off command line globbing. It is compiled into a separate object * command line globbing by default. NOTE: _CRT_glob has a default state of on.
* file which you can add to your link line to turn off globbing like
* this:
* *
* gcc -o foo.exe foo.o noglob.o * To use this object include the object file in your link command:
* * gcc -o foo.exe foo.o CRT_noglob.o
* $Revision$
* $Author$
* $Date$
* *
*/ */

View File

@ -1,19 +1,15 @@
/* /*
* CRTfmode.c * CRTfmode.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Sets _CRT_fmode to be zero, which will cause _mingw32_init_fmode to leave * Include this object to set _CRT_fmode to a state that will cause
* all file modes in their default state (basically text mode). * _mingw32_init_fmode to leave all file modes in their default state
* (basically text mode).
* *
* This file is part of the Mingw32 package. * To use this object include the object file in your link command:
* * gcc -o foo.exe foo.o CRTfmode.o
* THIS FILE IS IN THE PUBLIC DOMAIN.
*
* Contributers:
* Created by Colin Peters <colin@fu.is.saga-u.ac.jp>
*
* $Revision$
* $Author$
* $Date$
* *
*/ */

View File

@ -1,17 +1,15 @@
/* /*
* CRTglob.c * CRTglob.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* This object file defines _CRT_glob to have a value of -1, which will * Include this object file to set _CRT_glob to a state that will
* turn on command line globbing by default. If you want to turn off * turn on command line globbing by default. NOTE: _CRT_glob has a default
* command line globbing include a line * state of on. Specify CRT_noglob.o to turn off globbing by default.
* *
* int _CRT_glob = 0; * To use this object include the object file in your link command:
* * gcc -o foo.exe foo.o CRTglob.o
* in one of your source modules.
*
* $Revision$
* $Author$
* $Date$
* *
*/ */

View File

@ -1,5 +1,8 @@
/* /*
* CRTinit.c * CRTinit.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* A dummy version of _CRT_INIT for MS compatibility. Programs, or more often * A dummy version of _CRT_INIT for MS compatibility. Programs, or more often
* dlls, which use the static version of the MSVC run time are supposed to * dlls, which use the static version of the MSVC run time are supposed to
@ -7,22 +10,11 @@
* not appear to be necessary when using crtdll or the dll versions of the * not appear to be necessary when using crtdll or the dll versions of the
* MSVC runtime, so the dummy call simply does nothing. * MSVC runtime, so the dummy call simply does nothing.
* *
* Contributors: * This object file is included as a standard in the link process as provided
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp> * by the appropriate GCC frontend.
* *
* THIS SOFTWARE IS NOT COPYRIGHTED * To use this object include the object file in your link command:
* * gcc -o foo.exe foo.o CRTinit.o
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
* *
*/ */

View File

@ -1,3 +1,59 @@
2004-04-20 Earnie Boyd <earnie@users.sf.net>
* CONTRIBUTORS: New file.
* DISCLAIMER: Ditto.
* CRT_noglob.c: Reword copyright and disclaimer. Move Contributors
section CONTRIBUTORS file. Remove RCS tags.
* CRTFmode.c: Ditto.
* CRTglob.c: Ditto.
* CRTinit.c: Ditto.
* crt1.c: Ditto.
* crtdll.dev: Ditto.
* dllcrt1.c: Ditto.
* dllmain.c: Ditto.
* gccmain.c: Ditto.
* init.c: Ditto.
* isascii.c: Ditto.
* iscsym.c: Ditto.
* iscsymf.c: Ditto.
* jamfile: Ditto.
* main.c: Ditto.
* msvcrt.def.in: Ditto.
* strcasecmp.c: Ditto.
* toascii.c: Ditto.
* wcscmpi.c: Ditto.
* include/assert.h: Ditto.
* include/conio.h: Ditto.
* include/ctype.h: Ditto.
* include/direct.h: Ditto.
* include/dirent.h: Ditto.
* include/dos.h: Ditto.
* include/errno.h: Ditto.
* include/excpt.h: Ditto.
* include/fcntl.h: Ditto.
* include/float.h: Ditto.
* include/io.h: Ditto.
* include/locale.h: Ditto.
* include/malloc.h: Ditto.
* include/math.h: Ditto.
* include/process.h: Ditto.
* include/setjmp.h: Ditto.
* include/share.h: Ditto.
* include/signal.h: Ditto.
* include/stdio.h: Ditto.
* include/stdlib.h: Ditto.
* include/string.h: Ditto.
* include/tchar.h: Ditto.
* include/time.h: Ditto.
* include/wchar.h: Ditto.
* include/sys/locking.h: Ditto.
* include/sys/param.h: Ditto.
* include/sys/stat.h: Ditto.
* include/sys/timeb.h: Ditto.
* include/sys/types.h: Ditto.
* include/sys/utime.h: Ditto.
* mingwex/dirent.c: Ditto.
2004-04-19 Earnie Boyd <earnie@users.sf.net> 2004-04-19 Earnie Boyd <earnie@users.sf.net>
* include/_mingw.h: Revert to primary release 3 and increment minor * include/_mingw.h: Revert to primary release 3 and increment minor

10
winsup/mingw/DISCLAIMER Normal file
View File

@ -0,0 +1,10 @@
/*
* DISCLAIMER
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
*
* The mingw-runtime package and its code is distributed in the hope that it
* will be useful but WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESSED OR
* IMPLIED ARE HEREBY DISCLAIMED. This includes but is not limited to
* warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/

View File

@ -1,29 +1,12 @@
/* /*
* crt1.c * crt1.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Source code for the startup proceedures used by all programs. This code * Source code for the startup proceedures used by all programs. This code
* is compiled to make crt1.o, which should be located in the library path. * is compiled to make crt1.o, which should be located in the library path.
* *
* This code is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
* Maintained by Mumit Khan <khan@xraylith.wisc.EDU>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
/* Hide the declaration of _fmode with dllimport attribute in stdlib.h. /* Hide the declaration of _fmode with dllimport attribute in stdlib.h.

View File

@ -1,25 +1,16 @@
; ;
; crtdll.def ;* crtdll.def
;* This file has no copyright assigned and is placed in the Public Domain.
;* This file is a part of the mingw-runtime package.
;* No warranty is given; refer to the file DISCLAIMER within the package.
; ;
; Exports from crtdll.dll from Windows 95 SYSTEM directory. Hopefully this ; Exports from crtdll.dll from Windows 95 SYSTEM directory. Hopefully this
; should also work with the crtdll provided with Windows NT. ; should also work with the crtdll provided with Windows NT.
; ;
; Contributors: ; NOTE: The crtdll is OBSOLETE and msvcrt should be used instead. The msvcrt
; Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp> ; is available for free download from Microsoft Corporation and will work on
; ; Windows 95. Support for the crtdll is deprecated and this file may be
; THIS SOFTWARE IS NOT COPYRIGHTED ; deleted in future versions.
;
; This source code is offered for use in the public domain. You may
; use, modify or distribute it freely.
;
; This code is distributed in the hope that it will be useful but
; WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
; DISCLAMED. This includes but is not limited to warrenties of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
;
; $Revision$
; $Author$
; $Date$
; ;
; These three functions appear to be name mangled in some way, so GCC is ; These three functions appear to be name mangled in some way, so GCC is
; probably not going to be able to use them in any case. ; probably not going to be able to use them in any case.

View File

@ -1,29 +1,11 @@
/* /*
* dllcrt1.c * dllcrt1.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Initialization code for DLLs. * Initialization code for DLLs.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
* DLL support adapted from Gunther Ebert <gunther.ebert@ixos-leipzig.de>
* Maintained by Mumit Khan <khan@xraylith.wisc.EDU>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>

View File

@ -1,26 +1,12 @@
/* /*
* dllmain.c * dllmain.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* A stub DllMain function which will be called by DLLs which do not * A stub DllMain function which will be called by DLLs which do not
* have a user supplied DllMain. * have a user supplied DllMain.
* *
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <windows.h> #include <windows.h>

View File

@ -1,20 +1,14 @@
/* /*
* gccmain.c * gccmain.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* A separate version of __main, __do_global_ctors and __do_global_dtors for * A separate version of __main, __do_global_ctors and __do_global_dtors for
* Mingw32 for use with Cygwin32 b19. Hopefully this object file will only * Mingw32 for use with Cygwin32 b19. Hopefully this object file will only
* be linked if the libgcc.a doesn't include __main, __do_global_dtors and * be linked if the libgcc.a doesn't include __main, __do_global_dtors and
* __do_global_ctors. * __do_global_ctors.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Code supplied by Stan Cox <scox@cygnus.com>
*
* $Revision$
* $Author$
* $Date$
*
*/ */
/* Needed for the atexit prototype. */ /* Needed for the atexit prototype. */

View File

@ -1,27 +1,11 @@
/* /*
* assert.h * assert.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Define the assert macro for debug output. * Define the assert macro for debug output.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _ASSERT_H_ #ifndef _ASSERT_H_

View File

@ -1,28 +1,12 @@
/* /*
* conio.h * conio.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Low level console I/O functions. Pretty please try to use the ANSI * Low level console I/O functions. Pretty please try to use the ANSI
* standard ones if you are writing new code. * standard ones if you are writing new code.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _CONIO_H_ #ifndef _CONIO_H_

View File

@ -1,27 +1,11 @@
/* /*
* ctype.h * ctype.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Functions for testing character types and converting characters. * Functions for testing character types and converting characters.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _CTYPE_H_ #ifndef _CTYPE_H_

View File

@ -1,28 +1,12 @@
/* /*
* direct.h * direct.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Functions for manipulating paths and directories (included from io.h) * Functions for manipulating paths and directories (included from io.h)
* plus functions for setting the current drive. * plus functions for setting the current drive.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _DIRECT_H_ #ifndef _DIRECT_H_
#define _DIRECT_H_ #define _DIRECT_H_

View File

@ -1,23 +1,8 @@
/* /*
* DIRENT.H (formerly DIRLIB.H) * DIRENT.H (formerly DIRLIB.H)
* * This file has no copyright assigned and is placed in the Public Domain.
* by M. J. Weinstein Released to public domain 1-Jan-89 * This file is a part of the mingw-runtime package.
* * No warranty is given; refer to the file DISCLAIMER within the package.
* Because I have heard that this feature (opendir, readdir, closedir)
* it so useful for programmers coming from UNIX or attempting to port
* UNIX code, and because it is reasonably light weight, I have included
* it in the Mingw32 package. I have also added an implementation of
* rewinddir, seekdir and telldir.
* - Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* This code is distributed in the hope that is will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includeds but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
* *
*/ */
#ifndef _DIRENT_H_ #ifndef _DIRENT_H_

View File

@ -1,27 +1,11 @@
/* /*
* dos.h * dos.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* DOS-specific functions and structures. * DOS-specific functions and structures.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by J.J. van der Heijden <J.J.vanderHeijden@student.utwente.nl>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _DOS_H_ #ifndef _DOS_H_

View File

@ -1,27 +1,11 @@
/* /*
* errno.h * errno.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Error numbers and access to error reporting. * Error numbers and access to error reporting.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _ERRNO_H_ #ifndef _ERRNO_H_

View File

@ -1,31 +1,14 @@
/* /*
* excpt.h * excpt.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Support for operating system level structured exception handling. * Support for operating system level structured exception handling.
* *
* NOTE: This is very preliminary stuff. I am also pretty sure it is * NOTE: This is very preliminary stuff. I am also pretty sure it is
* completely Intel specific. * completely Intel specific.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
* Based on code by Mikey <jeffdb@netzone.com>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _EXCPT_H_ #ifndef _EXCPT_H_

View File

@ -1,28 +1,12 @@
/* /*
* fcntl.h * fcntl.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Access constants for _open. Note that the permissions constants are * Access constants for _open. Note that the permissions constants are
* in sys/stat.h (ick). * in sys/stat.h (ick).
* *
* This code is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _FCNTL_H_ #ifndef _FCNTL_H_
#define _FCNTL_H_ #define _FCNTL_H_

View File

@ -1,5 +1,8 @@
/* /*
* float.h * float.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Constants related to floating point arithmetic. * Constants related to floating point arithmetic.
* *
@ -11,25 +14,6 @@
* GCC-supplied header and just define the MS-specific extensions * GCC-supplied header and just define the MS-specific extensions
* here. * here.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include_next<float.h> #include_next<float.h>

View File

@ -1,27 +1,11 @@
/* /*
* io.h * io.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* System level I/O functions and types. * System level I/O functions and types.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _IO_H_ #ifndef _IO_H_
#define _IO_H_ #define _IO_H_

View File

@ -1,28 +1,12 @@
/* /*
* locale.h * locale.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Functions and types for localization (ie. changing the appearance of * Functions and types for localization (ie. changing the appearance of
* output based on the standards of a certain country). * output based on the standards of a certain country).
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _LOCALE_H_ #ifndef _LOCALE_H_

View File

@ -1,30 +1,14 @@
/* /*
* malloc.h * malloc.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Support for programs which want to use malloc.h to get memory management * Support for programs which want to use malloc.h to get memory management
* functions. Unless you absolutely need some of these functions and they are * functions. Unless you absolutely need some of these functions and they are
* not in the ANSI headers you should use the ANSI standard header files * not in the ANSI headers you should use the ANSI standard header files
* instead. * instead.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _MALLOC_H_ #ifndef _MALLOC_H_

View File

@ -1,27 +1,11 @@
/* /*
* math.h * math.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Mathematical functions. * Mathematical functions.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _MATH_H_ #ifndef _MATH_H_

View File

@ -1,27 +1,11 @@
/* /*
* process.h * process.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Function calls for spawning child processes. * Function calls for spawning child processes.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _PROCESS_H_ #ifndef _PROCESS_H_

View File

@ -1,28 +1,12 @@
/* /*
* setjmp.h * setjmp.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Declarations supporting setjmp and longjump, a method for avoiding * Declarations supporting setjmp and longjump, a method for avoiding
* the normal function call return sequence. (Bleah!) * the normal function call return sequence. (Bleah!)
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _SETJMP_H_ #ifndef _SETJMP_H_

View File

@ -1,27 +1,11 @@
/* /*
* share.h * share.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Constants for file sharing functions. * Constants for file sharing functions.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _SHARE_H_ #ifndef _SHARE_H_

View File

@ -1,27 +1,11 @@
/* /*
* signal.h * signal.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* A way to set handlers for exceptional conditions (also known as signals). * A way to set handlers for exceptional conditions (also known as signals).
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _SIGNAL_H_ #ifndef _SIGNAL_H_

View File

@ -1,5 +1,8 @@
/* /*
* stdio.h * stdio.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Definitions of types and prototypes of functions for standard input and * Definitions of types and prototypes of functions for standard input and
* output. * output.
@ -7,25 +10,6 @@
* NOTE: The file manipulation functions provided by Microsoft seem to * NOTE: The file manipulation functions provided by Microsoft seem to
* work with either slash (/) or backslash (\) as the directory separator. * work with either slash (/) or backslash (\) as the directory separator.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _STDIO_H_ #ifndef _STDIO_H_

View File

@ -1,27 +1,11 @@
/* /*
* stdlib.h * stdlib.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Definitions for common types, variables, and functions. * Definitions for common types, variables, and functions.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _STDLIB_H_ #ifndef _STDLIB_H_

View File

@ -1,27 +1,11 @@
/* /*
* string.h * string.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Definitions for memory and string functions. * Definitions for memory and string functions.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _STRING_H_ #ifndef _STRING_H_

View File

@ -1,27 +1,11 @@
/* /*
* locking.h * locking.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Constants for the mode parameter of the locking function. * Constants for the mode parameter of the locking function.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _LOCKING_H_ #ifndef _LOCKING_H_

View File

@ -1,24 +1,8 @@
/* /*
* param.h * param.h
* * This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the Mingw32 package. * This file is a part of the mingw-runtime package.
* * No warranty is given; refer to the file DISCLAIMER within the package.
* Contributors:
* Created by Earnie Boyd <earnie@users.sf.net>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
* *
*/ */

View File

@ -1,28 +1,12 @@
/* /*
* stat.h * stat.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Symbolic constants for opening and creating files, also stat, fstat and * Symbolic constants for opening and creating files, also stat, fstat and
* chmod functions. * chmod functions.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _STAT_H_ #ifndef _STAT_H_

View File

@ -1,27 +1,11 @@
/* /*
* timeb.h * timeb.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Support for the UNIX System V ftime system call. * Support for the UNIX System V ftime system call.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _TIMEB_H_ #ifndef _TIMEB_H_

View File

@ -1,28 +1,11 @@
/* /*
* types.h * types.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* The definition of constants, data types and global variables. * The definition of constants, data types and global variables.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
* Lots of types supplied by Pedro A. Aranda <paag@tid.es>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _TYPES_H_ #ifndef _TYPES_H_

View File

@ -1,27 +1,11 @@
/* /*
* utime.h * utime.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Support for the utime function. * Support for the utime function.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _UTIME_H_ #ifndef _UTIME_H_
#define _UTIME_H_ #define _UTIME_H_

View File

@ -1,5 +1,8 @@
/* /*
* tchar.h * tchar.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Unicode mapping layer for the standard C library. By including this * Unicode mapping layer for the standard C library. By including this
* file and using the 't' names for string functions * file and using the 't' names for string functions
@ -14,25 +17,6 @@
* the convention of prepending an underscore to non-ANSI library function * the convention of prepending an underscore to non-ANSI library function
* names). * names).
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _TCHAR_H_ #ifndef _TCHAR_H_

View File

@ -1,27 +1,11 @@
/* /*
* time.h * time.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Date and time functions and types. * Date and time functions and types.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _TIME_H_ #ifndef _TIME_H_

View File

@ -1,27 +1,14 @@
/* /*
* wchar.h * wchar.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Defines of all functions for supporting wide characters. Actually it * Defines of all functions for supporting wide characters. Actually it
* just includes all those headers, which is not a good thing to do from a * just includes all those headers, which is not a good thing to do from a
* processing time point of view, but it does mean that everything will be * processing time point of view, but it does mean that everything will be
* in sync. * in sync.
* *
* This file is part of the Mingw32 package.
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#ifndef _WCHAR_H_ #ifndef _WCHAR_H_

View File

@ -1,29 +1,12 @@
/* /*
* init.c * init.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Code to initialize standard file handles and command line arguments. * Code to initialize standard file handles and command line arguments.
* This file is #included in both crt1.c and dllcrt1.c. * This file is #included in both crt1.c and dllcrt1.c.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
* Maintained by Mumit Khan <khan@xraylith.wisc.EDU>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
/* /*

View File

@ -1,28 +1,14 @@
/* /*
* isascii.c * isascii.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Oldnames from ANSI header ctype.h * Oldnames from ANSI header ctype.h
* *
* Some wrapper functions for those old name functions whose appropriate * Some wrapper functions for those old name functions whose appropriate
* equivalents are not simply underscore prefixed. * equivalents are not simply underscore prefixed.
* *
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <ctype.h> #include <ctype.h>

View File

@ -1,28 +1,14 @@
/* /*
* iscsym.c * iscsym.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Oldnames from ANSI header ctype.h * Oldnames from ANSI header ctype.h
* *
* Some wrapper functions for those old name functions whose appropriate * Some wrapper functions for those old name functions whose appropriate
* equivalents are not simply underscore prefixed. * equivalents are not simply underscore prefixed.
* *
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <ctype.h> #include <ctype.h>

View File

@ -1,28 +1,14 @@
/* /*
* iscsymf.c * iscsymf.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Oldnames from ANSI header ctype.h * Oldnames from ANSI header ctype.h
* *
* Some wrapper functions for those old name functions whose appropriate * Some wrapper functions for those old name functions whose appropriate
* equivalents are not simply underscore prefixed. * equivalents are not simply underscore prefixed.
* *
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <ctype.h> #include <ctype.h>

View File

@ -1,10 +1,9 @@
# #
# Jamfile for building various libraries and object files for the # Jamfile for building various libraries and object files for the
# Minimalist GNU-Win32 package. # Minimalist GNU-Win32 package.
# #* This file has no copyright assigned and is placed in the Public Domain.
# $Revision$ #* This file is a part of the mingw-runtime package.
# $Author$ #* No warranty is given; refer to the file DISCLAIMER within the package.
# $Date$
# #
# Change this line if you have installed Mingw32 in another directory. # Change this line if you have installed Mingw32 in another directory.

View File

@ -1,30 +1,13 @@
/* /*
* main.c * main.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Extra startup code for applications which do not have a main function * Extra startup code for applications which do not have a main function
* of their own (but do have a WinMain). Generally these are GUI * of their own (but do have a WinMain). Generally these are GUI
* applications, but they don't *have* to be. * applications, but they don't *have* to be.
* *
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
* Maintained by Mumit Khan <khan@xraylith.wisc.EDU>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,8 @@
/* /*
* dirent.c * dirent.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Derived from DIRLIB.C by Matt J. Weinstein * Derived from DIRLIB.C by Matt J. Weinstein
* This note appears in the DIRLIB.H * This note appears in the DIRLIB.H
@ -9,10 +12,6 @@
* Significantly revised and rewinddir, seekdir and telldir added by Colin * Significantly revised and rewinddir, seekdir and telldir added by Colin
* Peters <colin@fu.is.saga-u.ac.jp> * Peters <colin@fu.is.saga-u.ac.jp>
* *
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,6 +1,9 @@
; ;
; __FILENAME__ ; __FILENAME__
; created from msvcrt.def.in ; created from msvcrt.def.in
;* This file has no copyright assigned and is placed in the Public Domain.
;* This file is a part of the mingw-runtime package.
;* No warranty is given; refer to the file DISCLAIMER within the package.
; ;
; Exports from msvcrt.dll, msvcr70.dll and msvcr71.dll ; Exports from msvcrt.dll, msvcr70.dll and msvcr71.dll
; ;
@ -8,24 +11,6 @@
; are included. Not all functions have prototypes in the headers ; are included. Not all functions have prototypes in the headers
; (and some are not functions at all). ; (and some are not functions at all).
; ;
; Contributors:
; Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
; MSVCRT 6,10, 7.00, 7.10 additions by Danny Smith <dannysmith@users.sourceforge.net>
;
; THIS SOFTWARE IS NOT COPYRIGHTED
;
; This source code is offered for use in the public domain. You may
; use, modify or distribute it freely.
;
; This code is distributed in the hope that it will be useful but
; WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
; DISCLAMED. This includes but is not limited to warrenties of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
;
; $Revision$
; $Author$
; $Date$
;
EXPORTS EXPORTS
_CIacos _CIacos
_CIasin _CIasin

View File

@ -1,28 +1,14 @@
/* /*
* strcasecmp.c * strcasecmp.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Oldnames from ANSI header string.h * Oldnames from ANSI header string.h
* *
* Some wrapper functions for those old name functions whose appropriate * Some wrapper functions for those old name functions whose appropriate
* equivalents are not simply underscore prefixed. * equivalents are not simply underscore prefixed.
* *
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <string.h> #include <string.h>

View File

@ -1,28 +1,14 @@
/* /*
* toascii.c * toascii.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Oldnames from ANSI header ctype.h * Oldnames from ANSI header ctype.h
* *
* Some wrapper functions for those old name functions whose appropriate * Some wrapper functions for those old name functions whose appropriate
* equivalents are not simply underscore prefixed. * equivalents are not simply underscore prefixed.
* *
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <ctype.h> #include <ctype.h>

View File

@ -1,28 +1,14 @@
/* /*
* wcscmpi.c * wcscmpi.c
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
* *
* Oldnames from ANSI header string.h * Oldnames from ANSI header string.h
* *
* Some wrapper functions for those old name functions whose appropriate * Some wrapper functions for those old name functions whose appropriate
* equivalents are not simply underscore prefixed. * equivalents are not simply underscore prefixed.
* *
* Contributors:
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warrenties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* $Revision$
* $Author$
* $Date$
*
*/ */
#include <string.h> #include <string.h>