<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-02-24)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-02-24 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libcsupport/include/sys/statvfs.h: Remove include <sys/cdefs.h>
        (unused). Add C++ guards. Declare functions extern.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2742&r2=text&tr2=1.2743&diff_format=h">M</a></td><td width='1%'>1.2743</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/sys/statvfs.h.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>cpukit/libcsupport/include/sys/statvfs.h</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2742 rtems/cpukit/ChangeLog:1.2743
--- rtems/cpukit/ChangeLog:1.2742       Thu Feb 24 09:10:06 2011
+++ rtems/cpukit/ChangeLog      Thu Feb 24 09:48:05 2011
</font><font color='#997700'>@@ -1,5 +1,10 @@
</font> 2011-02-24        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * libcsupport/include/sys/statvfs.h: Remove include <sys/cdefs.h>
+       (unused). Add C++ guards. Declare functions extern.
+
+2011-02-24     Ralf Corsépius <ralf.corsepius@rtems.org>
+
</font>   * posix/include/rtems/posix/mqueue.h,
        posix/include/rtems/posix/timer.h: Add missing includes.
 

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/sys/statvfs.h:1.1 rtems/cpukit/libcsupport/include/sys/statvfs.h:1.2
--- rtems/cpukit/libcsupport/include/sys/statvfs.h:1.1  Thu Oct  8 02:07:36 2009
+++ rtems/cpukit/libcsupport/include/sys/statvfs.h      Thu Feb 24 09:48:06 2011
</font><font color='#997700'>@@ -15,9 +15,12 @@
</font> #ifndef _SYS_STATVFS_H_
 #define _SYS_STATVFS_H_
 
<font color='#880000'>-#include <sys/cdefs.h>
</font> #include <stdint.h>
 
<font color='#000088'>+#ifdef __cplusplus
+extern "C" {
+#endif
+
</font> typedef uint64_t fsblkcnt_t;
 typedef uint32_t fsfilcnt_t;
 
<font color='#997700'>@@ -39,7 +42,11 @@
</font>   unsigned long f_namemax; /**< Maximum filename length. */
 };
 
<font color='#880000'>-int statvfs(const char *, struct statvfs *);
-int fstatvfs(int, struct statvfs *);
</font><font color='#000088'>+extern int statvfs(const char *, struct statvfs *);
+extern int fstatvfs(int, struct statvfs *);
+
+#ifdef __cplusplus
+}
+#endif
</font> 
 #endif
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>