<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: error</title>
	<atom:link href="https://www.emblogic.com/blog/08/error-3/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/08/error-3/</link>
	<description>Embedded System and ARM Training</description>
	<lastBuildDate>Mon, 07 Oct 2013 04:00:03 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>By: manoj</title>
		<link>https://www.emblogic.com/blog/08/error-3/#comment-1747</link>
		<dc:creator><![CDATA[manoj]]></dc:creator>
		<pubDate>Thu, 30 Aug 2012 11:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=5013#comment-1747</guid>
		<description><![CDATA[remove void from definition of the function, and warning will not occur.


this warning is due to type mismatch, function that you were calling returns int  and function that you have defined returns void..

That is a problem. If you dont use void, by default function will return integer, so there will not be any warning.

cheers..!!]]></description>
		<content:encoded><![CDATA[<p>remove void from definition of the function, and warning will not occur.</p>
<p>this warning is due to type mismatch, function that you were calling returns int  and function that you have defined returns void..</p>
<p>That is a problem. If you dont use void, by default function will return integer, so there will not be any warning.</p>
<p>cheers..!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: msiddarth</title>
		<link>https://www.emblogic.com/blog/08/error-3/#comment-1585</link>
		<dc:creator><![CDATA[msiddarth]]></dc:creator>
		<pubDate>Fri, 24 Aug 2012 03:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=5013#comment-1585</guid>
		<description><![CDATA[You have to declare the function before you use it. If the function name appears before its declaration, C compiler will follow certain rules and makes the declaration itself. If it is wrong, you will get that error.

You have two options: (1) define it before you use it, or (2) use forward declaration without implementation]]></description>
		<content:encoded><![CDATA[<p>You have to declare the function before you use it. If the function name appears before its declaration, C compiler will follow certain rules and makes the declaration itself. If it is wrong, you will get that error.</p>
<p>You have two options: (1) define it before you use it, or (2) use forward declaration without implementation</p>
]]></content:encoded>
	</item>
</channel>
</rss>
