<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/</link>
    <language>en-us</language>

    <title>ecos-v3_0-branch: packages/language/c/libc/stdio/current/cdl/stdio.cdl history</title>
    <description>packages/language/c/libc/stdio/current/cdl/stdio.cdl revision history</description>
    <item>
    <title>Update all copyright banners to reflect FSF ownership; fix and improve licence text.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/74dbf4c3f2e1/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Update all copyright banners to reflect FSF ownership; fix and improve licence text.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 29 Jan 2009 17:47:46 +0000</pubDate>
</item>
<item>
    <title>* cdl/stdio.cdl (CYGPKG_LIBC_STDIO_FILEIO): The FILEIO variant of</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/5afec7d92550/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[* cdl/stdio.cdl (CYGPKG_LIBC_STDIO_FILEIO): The FILEIO variant of<br/>
        vsnprintf breaks if CYGSEM_LIBC_STDIO_DYNAMIC_SETVBUF is disabled.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Wed, 15 Dec 2004 12:35:44 +0000</pubDate>
</item>
<item>
    <title>* cdl/stdio.cdl: Only build fopen/fclose if CYGPKG_LIBC_STDIO_OPEN.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/80c638069a65/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[* cdl/stdio.cdl: Only build fopen/fclose if CYGPKG_LIBC_STDIO_OPEN.<br/>
<br/>
	* src/common/fclose.cxx: Can remove ifdef CYGPKG_LIBC_STDIO_OPEN since<br/>
	file now isn't even built if not.<br/>
	* src/common/fopen.cxx: Ditto. Also condition on<br/>
	CYGFUN_LIBC_STDIO_OPEN_POSIX_FDFUNCS so decision is centralised in CDL.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 27 Sep 2004 11:33:03 +0000</pubDate>
</item>
<item>
    <title>* cdl/stdio.cdl (CYGFUN_LIBC_STDIO_OPEN_POSIX_FDFUNCS): New option,</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/4643fc05d753/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[* cdl/stdio.cdl (CYGFUN_LIBC_STDIO_OPEN_POSIX_FDFUNCS): New option,<br/>
	to control whether or not fdopen()/fileno() are implemented.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 27 Sep 2004 11:27:08 +0000</pubDate>
</item>
<item>
    <title>* cdl/stdio.cdl (CYGDAT_LIBC_STDIO_DEFAULT_CONSOLE): Only use</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/2c111aea4d06/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[* cdl/stdio.cdl (CYGDAT_LIBC_STDIO_DEFAULT_CONSOLE): Only use<br/>
	CYGDAT_IO_SERIAL_TTY_CONSOLE if set.<br/>
	* src/input/vfscanf.cxx (vfscanf): Add long long and long double<br/>
	support.<br/>
	* cdl/stdio.cdl (CYGFUN_LIBC_STDIO_LONGLONG): Make it a new option.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 18 Aug 2004 14:11:59 +0000</pubDate>
</item>
<item>
    <title>* src/input/vfscanf.cxx (vfscanf): Silence warning.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/871b38a618f4/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[* src/input/vfscanf.cxx (vfscanf): Silence warning.<br/>
<br/>
	* include/stdio.h:<br/>
	Add file operation functions which weren't here before!<br/>
	While I'm here, add __THROW everywhere and use __externC not externC.<br/>
<br/>
	* cdl/stdio.cdl:  We implement stdio fileops in isoinfra now.<br/>
	Also set header for that.<br/>
	Build fileops.cxx.<br/>
	L_tmpnam must be at least 4.<br/>
	TMP_MAX must be at least 1, and ISO C says it should be &gt;=25.<br/>
	Add description for CYGPKG_LIBC_STDIO_FILEIO and move up from<br/>
	bottom so it goes with others.<br/>
<br/>
	* src/common/fileops.cxx: New file. Implements rename(), remove(),<br/>
	tmpnam() and tmpfile().<br/>
<br/>
	* src/common/fclose.cxx: Add throw specifiers to match stdio.h.<br/>
	* src/common/feof.cxx: Ditto.<br/>
	* src/common/fflush.cxx: Ditto.<br/>
	* src/common/fopen.cxx: Ditto.<br/>
	* src/common/freopen.cxx: Ditto.<br/>
	* src/common/fseek.cxx: Ditto.<br/>
	* src/common/setvbuf.cxx: Ditto.<br/>
	* src/common/snprintf.cxx: Ditto.<br/>
	* src/common/sprintf.cxx: Ditto.<br/>
	* src/common/sscanf.cxx: Ditto.<br/>
	* src/common/stdioinlines.cxx: Ditto.<br/>
	* src/common/ungetc.cxx: Ditto.<br/>
	* src/common/vsnprintf.cxx: Ditto.<br/>
	* src/common/vsscanf.cxx: Ditto.<br/>
	* src/input/fgetc.cxx: Ditto.<br/>
	* src/input/fgets.cxx: Ditto.<br/>
	* src/input/fread.cxx: Ditto.<br/>
	* src/input/fscanf.cxx: Ditto.<br/>
	* src/input/gets.cxx: Ditto.<br/>
	* src/input/scanf.cxx: Ditto.<br/>
	* src/input/vfscanf.cxx: Ditto.<br/>
	* src/output/fnprintf.cxx: Ditto.<br/>
	* src/output/fprintf.cxx: Ditto.<br/>
	* src/output/fputc.cxx: Ditto.<br/>
	* src/output/fputs.cxx: Ditto.<br/>
	* src/output/fwrite.cxx: Ditto.<br/>
	* src/output/printf.cxx: Ditto.<br/>
	* src/output/vfnprintf.cxx: Ditto.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 15 Mar 2004 15:21:43 +0000</pubDate>
</item>
<item>
    <title>* cdl/stdio.cdl: only require &quot;/dev/haldiag&quot; if actually using it.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/03e800409801/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[* cdl/stdio.cdl: only require &quot;/dev/haldiag&quot; if actually using it.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 03 Sep 2003 15:37:55 +0000</pubDate>
</item>
<item>
    <title>Fix fread() EOF handling.  Add file I/O test.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/391d6f1c4de1/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Fix fread() EOF handling.  Add file I/O test.]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Thu, 06 Mar 2003 20:57:26 +0000</pubDate>
</item>
<item>
    <title>* cdl/stdio.cdl: Fix doc link.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/210950d0ee57/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[* cdl/stdio.cdl: Fix doc link.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 24 Feb 2003 14:27:48 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-23-21:39:14-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/d2c90368aeef/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-23-21:39:14-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 23 May 2002 22:59:51 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-20-20:11:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/e0c0827131d1/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-20-20:11:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 20 May 2002 22:19:26 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-11-23-15:32:03-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/9b55e9c69693/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Merge from eCos master repository on 2001-11-23-15:32:03-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 23 Nov 2001 17:12:52 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-06-08-21:11:51-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/ac086aa3217e/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Merge from eCos master repository on 2001-06-08-21:11:51-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Sun, 10 Jun 2001 19:35:23 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-03-29-21:44:39-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/b939e9cada46/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Merge from eCos master repository on 2001-03-29-21:44:39-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 06 Apr 2001 17:20:13 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-02-12-23:44:24-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/25e238959bae/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Merge from eCos master repository on 2001-02-12-23:44:24-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 13 Feb 2001 01:23:16 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-11-03-09:00:49-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/d2f49caf9e38/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Merge from eCos master repository on 2000-11-03-09:00:49-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 03 Nov 2000 21:17:40 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-08-21-22:40:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/6ed91473a1cd/packages/language/c/libc/stdio/current/cdl/stdio.cdl</link>
    <description><![CDATA[Merge from eCos master repository on 2000-08-21-22:40:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 25 Aug 2000 17:32:38 +0000</pubDate>
</item>

  </channel>
</rss>
