diff options
author | Earnie Boyd <earnie@users.sf.net> | 2004-04-20 22:49:32 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2004-04-20 22:49:32 +0000 |
commit | 4d6c899474cc3494eafb519594647618c67e496b (patch) | |
tree | 1cd082c0775f942bf6a8e95df8c28786490f36ca /winsup/mingw | |
parent | f4a395ef787ee0d803f9fe4ba3157699764bcb73 (diff) | |
download | newlib-4d6c899474cc3494eafb519594647618c67e496b.zip newlib-4d6c899474cc3494eafb519594647618c67e496b.tar.gz newlib-4d6c899474cc3494eafb519594647618c67e496b.tar.bz2 |
* 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.
Diffstat (limited to 'winsup/mingw')
53 files changed, 269 insertions, 868 deletions
diff --git a/winsup/mingw/CONTRIBUTORS b/winsup/mingw/CONTRIBUTORS new file mode 100644 index 0000000..f696f50 --- /dev/null +++ b/winsup/mingw/CONTRIBUTORS @@ -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. + * + */ diff --git a/winsup/mingw/CRT_noglob.c b/winsup/mingw/CRT_noglob.c index 442820c..2e122fb 100644 --- a/winsup/mingw/CRT_noglob.c +++ b/winsup/mingw/CRT_noglob.c @@ -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 - * turn off command line globbing. It is compiled into a separate object - * file which you can add to your link line to turn off globbing like - * this: + * Include this object file to set _CRT_glob to a state that will turn off + * command line globbing by default. NOTE: _CRT_glob has a default state of on. * - * gcc -o foo.exe foo.o noglob.o - * - * $Revision$ - * $Author$ - * $Date$ + * To use this object include the object file in your link command: + * gcc -o foo.exe foo.o CRT_noglob.o * */ diff --git a/winsup/mingw/CRTfmode.c b/winsup/mingw/CRTfmode.c index c3f2a44..bf750d9 100644 --- a/winsup/mingw/CRTfmode.c +++ b/winsup/mingw/CRTfmode.c @@ -1,19 +1,15 @@ /* * 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 - * all file modes in their default state (basically text mode). + * Include this object to set _CRT_fmode to a state that will cause + * _mingw32_init_fmode to leave all file modes in their default state + * (basically text mode). * - * This file is part of the Mingw32 package. - * - * THIS FILE IS IN THE PUBLIC DOMAIN. - * - * Contributers: - * Created by Colin Peters <colin@fu.is.saga-u.ac.jp> - * - * $Revision$ - * $Author$ - * $Date$ + * To use this object include the object file in your link command: + * gcc -o foo.exe foo.o CRTfmode.o * */ diff --git a/winsup/mingw/CRTglob.c b/winsup/mingw/CRTglob.c index 09f8581..a4f5fe0 100644 --- a/winsup/mingw/CRTglob.c +++ b/winsup/mingw/CRTglob.c @@ -1,17 +1,15 @@ /* * 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 - * turn on command line globbing by default. If you want to turn off - * command line globbing include a line + * Include this object file to set _CRT_glob to a state that will + * turn on command line globbing by default. NOTE: _CRT_glob has a default + * state of on. Specify CRT_noglob.o to turn off globbing by default. * - * int _CRT_glob = 0; - * - * in one of your source modules. - * - * $Revision$ - * $Author$ - * $Date$ + * To use this object include the object file in your link command: + * gcc -o foo.exe foo.o CRTglob.o * */ diff --git a/winsup/mingw/CRTinit.c b/winsup/mingw/CRTinit.c index fa0e7ba..bb2304d 100644 --- a/winsup/mingw/CRTinit.c +++ b/winsup/mingw/CRTinit.c @@ -1,5 +1,8 @@ /* * 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 * 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 * MSVC runtime, so the dummy call simply does nothing. * - * 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$ + * This object file is included as a standard in the link process as provided + * by the appropriate GCC frontend. + * + * To use this object include the object file in your link command: + * gcc -o foo.exe foo.o CRTinit.o * */ diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index f9fb7e6..26c4739 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -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> * include/_mingw.h: Revert to primary release 3 and increment minor diff --git a/winsup/mingw/DISCLAIMER b/winsup/mingw/DISCLAIMER new file mode 100644 index 0000000..2637430 --- /dev/null +++ b/winsup/mingw/DISCLAIMER @@ -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. + */ diff --git a/winsup/mingw/crt1.c b/winsup/mingw/crt1.c index 674bfe3..21c54d6 100644 --- a/winsup/mingw/crt1.c +++ b/winsup/mingw/crt1.c @@ -1,29 +1,12 @@ /* * 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 * 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. diff --git a/winsup/mingw/crtdll.def b/winsup/mingw/crtdll.def index 6f924fb..dbd18ec 100644 --- a/winsup/mingw/crtdll.def +++ b/winsup/mingw/crtdll.def @@ -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 ; should also work with the crtdll provided with Windows NT. ; -; 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$ +; NOTE: The crtdll is OBSOLETE and msvcrt should be used instead. The msvcrt +; 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 +; deleted in future versions. ; ; 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. diff --git a/winsup/mingw/dllcrt1.c b/winsup/mingw/dllcrt1.c index 4538cf7..dda8a24 100644 --- a/winsup/mingw/dllcrt1.c +++ b/winsup/mingw/dllcrt1.c @@ -1,29 +1,11 @@ /* * 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. * - * 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 <stdio.h> diff --git a/winsup/mingw/dllmain.c b/winsup/mingw/dllmain.c index 40c4f4f..3036823 100644 --- a/winsup/mingw/dllmain.c +++ b/winsup/mingw/dllmain.c @@ -1,26 +1,12 @@ /* * 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 * 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> diff --git a/winsup/mingw/gccmain.c b/winsup/mingw/gccmain.c index 5c438e9..601d15a 100644 --- a/winsup/mingw/gccmain.c +++ b/winsup/mingw/gccmain.c @@ -1,20 +1,14 @@ /* * 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 * 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 * __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. */ diff --git a/winsup/mingw/include/assert.h b/winsup/mingw/include/assert.h index 893db91..d33c9a8 100644 --- a/winsup/mingw/include/assert.h +++ b/winsup/mingw/include/assert.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/conio.h b/winsup/mingw/include/conio.h index c8e4a84..a60ed85 100644 --- a/winsup/mingw/include/conio.h +++ b/winsup/mingw/include/conio.h @@ -1,28 +1,12 @@ /* * 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 * 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_ diff --git a/winsup/mingw/include/ctype.h b/winsup/mingw/include/ctype.h index 375c7c3..1c321b6 100644 --- a/winsup/mingw/include/ctype.h +++ b/winsup/mingw/include/ctype.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/direct.h b/winsup/mingw/include/direct.h index 6fadb5e..cf44662 100644 --- a/winsup/mingw/include/direct.h +++ b/winsup/mingw/include/direct.h @@ -1,28 +1,12 @@ /* * 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) * 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_ #define _DIRECT_H_ diff --git a/winsup/mingw/include/dirent.h b/winsup/mingw/include/dirent.h index b971138..58c81ea 100644 --- a/winsup/mingw/include/dirent.h +++ b/winsup/mingw/include/dirent.h @@ -1,23 +1,8 @@ /* * DIRENT.H (formerly DIRLIB.H) - * - * by M. J. Weinstein Released to public domain 1-Jan-89 - * - * 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$ + * 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. * */ #ifndef _DIRENT_H_ diff --git a/winsup/mingw/include/dos.h b/winsup/mingw/include/dos.h index 219632f..b3aa9ae 100644 --- a/winsup/mingw/include/dos.h +++ b/winsup/mingw/include/dos.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/errno.h b/winsup/mingw/include/errno.h index e4669cc..f9f709c 100644 --- a/winsup/mingw/include/errno.h +++ b/winsup/mingw/include/errno.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/excpt.h b/winsup/mingw/include/excpt.h index 7aa4429..d46a1d9 100644 --- a/winsup/mingw/include/excpt.h +++ b/winsup/mingw/include/excpt.h @@ -1,31 +1,14 @@ /* * 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. * * NOTE: This is very preliminary stuff. I am also pretty sure it is * 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_ diff --git a/winsup/mingw/include/fcntl.h b/winsup/mingw/include/fcntl.h index b34b4ca..e62d159 100644 --- a/winsup/mingw/include/fcntl.h +++ b/winsup/mingw/include/fcntl.h @@ -1,28 +1,12 @@ /* * 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 * 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_ #define _FCNTL_H_ diff --git a/winsup/mingw/include/float.h b/winsup/mingw/include/float.h index 1e3d4aa..53bfb34 100644 --- a/winsup/mingw/include/float.h +++ b/winsup/mingw/include/float.h @@ -1,5 +1,8 @@ /* * 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. * @@ -11,25 +14,6 @@ * GCC-supplied header and just define the MS-specific extensions * 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> diff --git a/winsup/mingw/include/io.h b/winsup/mingw/include/io.h index c559f60..265f42b 100644 --- a/winsup/mingw/include/io.h +++ b/winsup/mingw/include/io.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ #define _IO_H_ diff --git a/winsup/mingw/include/locale.h b/winsup/mingw/include/locale.h index 3f36388..41746c6 100644 --- a/winsup/mingw/include/locale.h +++ b/winsup/mingw/include/locale.h @@ -1,28 +1,12 @@ /* * 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 * 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_ diff --git a/winsup/mingw/include/malloc.h b/winsup/mingw/include/malloc.h index a1a38f5..3cfc5fb 100644 --- a/winsup/mingw/include/malloc.h +++ b/winsup/mingw/include/malloc.h @@ -1,30 +1,14 @@ /* * 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 * 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 * 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_ diff --git a/winsup/mingw/include/math.h b/winsup/mingw/include/math.h index ec0874c..fd6ce95 100644 --- a/winsup/mingw/include/math.h +++ b/winsup/mingw/include/math.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/process.h b/winsup/mingw/include/process.h index ab9d353..bdc2f0c 100644 --- a/winsup/mingw/include/process.h +++ b/winsup/mingw/include/process.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/setjmp.h b/winsup/mingw/include/setjmp.h index 91a650c..edb9efc 100644 --- a/winsup/mingw/include/setjmp.h +++ b/winsup/mingw/include/setjmp.h @@ -1,28 +1,12 @@ /* * 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 * 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_ diff --git a/winsup/mingw/include/share.h b/winsup/mingw/include/share.h index 4643752..09a54ad 100644 --- a/winsup/mingw/include/share.h +++ b/winsup/mingw/include/share.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/signal.h b/winsup/mingw/include/signal.h index e138632..887150d 100644 --- a/winsup/mingw/include/signal.h +++ b/winsup/mingw/include/signal.h @@ -1,27 +1,11 @@ /* * 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). * - * 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_ diff --git a/winsup/mingw/include/stdio.h b/winsup/mingw/include/stdio.h index b7225af..63ff1d6 100644 --- a/winsup/mingw/include/stdio.h +++ b/winsup/mingw/include/stdio.h @@ -1,5 +1,8 @@ /* * 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 * output. @@ -7,25 +10,6 @@ * NOTE: The file manipulation functions provided by Microsoft seem to * 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_ diff --git a/winsup/mingw/include/stdlib.h b/winsup/mingw/include/stdlib.h index 901a10e..49ffa14 100644 --- a/winsup/mingw/include/stdlib.h +++ b/winsup/mingw/include/stdlib.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/string.h b/winsup/mingw/include/string.h index 790ccba..a919bc2 100644 --- a/winsup/mingw/include/string.h +++ b/winsup/mingw/include/string.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/sys/locking.h b/winsup/mingw/include/sys/locking.h index ccdb9ec..eee5e3c 100644 --- a/winsup/mingw/include/sys/locking.h +++ b/winsup/mingw/include/sys/locking.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/sys/param.h b/winsup/mingw/include/sys/param.h index 40e5af8..74966bd 100644 --- a/winsup/mingw/include/sys/param.h +++ b/winsup/mingw/include/sys/param.h @@ -1,24 +1,8 @@ /* * param.h - * - * This file is part of the Mingw32 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$ + * 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. * */ diff --git a/winsup/mingw/include/sys/stat.h b/winsup/mingw/include/sys/stat.h index 3d24c61..aa575c8 100644 --- a/winsup/mingw/include/sys/stat.h +++ b/winsup/mingw/include/sys/stat.h @@ -1,28 +1,12 @@ /* * 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 * 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_ diff --git a/winsup/mingw/include/sys/timeb.h b/winsup/mingw/include/sys/timeb.h index a093104..4cb4b2e 100644 --- a/winsup/mingw/include/sys/timeb.h +++ b/winsup/mingw/include/sys/timeb.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/sys/types.h b/winsup/mingw/include/sys/types.h index ba51252..3330133 100644 --- a/winsup/mingw/include/sys/types.h +++ b/winsup/mingw/include/sys/types.h @@ -1,28 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/sys/utime.h b/winsup/mingw/include/sys/utime.h index 14a2870..75cfeb4 100644 --- a/winsup/mingw/include/sys/utime.h +++ b/winsup/mingw/include/sys/utime.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ #define _UTIME_H_ diff --git a/winsup/mingw/include/tchar.h b/winsup/mingw/include/tchar.h index d2a6665..48e034f 100644 --- a/winsup/mingw/include/tchar.h +++ b/winsup/mingw/include/tchar.h @@ -1,5 +1,8 @@ /* * 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 * file and using the 't' names for string functions @@ -14,25 +17,6 @@ * the convention of prepending an underscore to non-ANSI library function * 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_ diff --git a/winsup/mingw/include/time.h b/winsup/mingw/include/time.h index 2a75e18..88abd1c 100644 --- a/winsup/mingw/include/time.h +++ b/winsup/mingw/include/time.h @@ -1,27 +1,11 @@ /* * 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. * - * 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_ diff --git a/winsup/mingw/include/wchar.h b/winsup/mingw/include/wchar.h index 7a297ec..acf9641 100644 --- a/winsup/mingw/include/wchar.h +++ b/winsup/mingw/include/wchar.h @@ -1,27 +1,14 @@ /* * 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 * 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 * 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_ diff --git a/winsup/mingw/init.c b/winsup/mingw/init.c index 8fa4652..a30c035 100644 --- a/winsup/mingw/init.c +++ b/winsup/mingw/init.c @@ -1,29 +1,12 @@ /* * 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. * 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$ - * */ /* diff --git a/winsup/mingw/isascii.c b/winsup/mingw/isascii.c index 2d25341..9d3385c 100644 --- a/winsup/mingw/isascii.c +++ b/winsup/mingw/isascii.c @@ -1,28 +1,14 @@ /* * 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 * * Some wrapper functions for those old name functions whose appropriate * 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> diff --git a/winsup/mingw/iscsym.c b/winsup/mingw/iscsym.c index 125b496..ea9a571 100644 --- a/winsup/mingw/iscsym.c +++ b/winsup/mingw/iscsym.c @@ -1,28 +1,14 @@ /* * 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 * * Some wrapper functions for those old name functions whose appropriate * 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> diff --git a/winsup/mingw/iscsymf.c b/winsup/mingw/iscsymf.c index 417b9d2..6afde99 100644 --- a/winsup/mingw/iscsymf.c +++ b/winsup/mingw/iscsymf.c @@ -1,28 +1,14 @@ /* * 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 * * Some wrapper functions for those old name functions whose appropriate * 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> diff --git a/winsup/mingw/jamfile b/winsup/mingw/jamfile index 1769d95..85f0b2b 100644 --- a/winsup/mingw/jamfile +++ b/winsup/mingw/jamfile @@ -1,10 +1,9 @@ # # Jamfile for building various libraries and object files for the # Minimalist GNU-Win32 package. -# -# $Revision$ -# $Author$ -# $Date$ +#* 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. # # Change this line if you have installed Mingw32 in another directory. diff --git a/winsup/mingw/main.c b/winsup/mingw/main.c index ea1dcd8..2eec16b 100644 --- a/winsup/mingw/main.c +++ b/winsup/mingw/main.c @@ -1,30 +1,13 @@ /* * 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 * of their own (but do have a WinMain). Generally these are GUI * 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> diff --git a/winsup/mingw/mingwex/dirent.c b/winsup/mingw/mingwex/dirent.c index bef2222..4cfa9c7 100644 --- a/winsup/mingw/mingwex/dirent.c +++ b/winsup/mingw/mingwex/dirent.c @@ -1,5 +1,8 @@ /* * 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 * This note appears in the DIRLIB.H @@ -9,10 +12,6 @@ * Significantly revised and rewinddir, seekdir and telldir added by Colin * Peters <colin@fu.is.saga-u.ac.jp> * - * $Revision$ - * $Author$ - * $Date$ - * */ #include <stdlib.h> diff --git a/winsup/mingw/msvcrt.def.in b/winsup/mingw/msvcrt.def.in index 6486399..ac9a92c 100644 --- a/winsup/mingw/msvcrt.def.in +++ b/winsup/mingw/msvcrt.def.in @@ -1,6 +1,9 @@ ; ; __FILENAME__ ; 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 ; @@ -8,24 +11,6 @@ ; are included. Not all functions have prototypes in the headers ; (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 _CIacos _CIasin diff --git a/winsup/mingw/strcasecmp.c b/winsup/mingw/strcasecmp.c index ce5351c..a238e22 100644 --- a/winsup/mingw/strcasecmp.c +++ b/winsup/mingw/strcasecmp.c @@ -1,28 +1,14 @@ /* * 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 * * Some wrapper functions for those old name functions whose appropriate * 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> diff --git a/winsup/mingw/toascii.c b/winsup/mingw/toascii.c index 7eebbe8..be9f2f5 100644 --- a/winsup/mingw/toascii.c +++ b/winsup/mingw/toascii.c @@ -1,28 +1,14 @@ /* * 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 * * Some wrapper functions for those old name functions whose appropriate * 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> diff --git a/winsup/mingw/wcscmpi.c b/winsup/mingw/wcscmpi.c index a97f78e..497964b 100644 --- a/winsup/mingw/wcscmpi.c +++ b/winsup/mingw/wcscmpi.c @@ -1,28 +1,14 @@ /* * 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 * * Some wrapper functions for those old name functions whose appropriate * 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> |