From mboxrd@z Thu Jan 1 00:00:00 1970 From: "John T. Williams" Subject: Stupid Question. Date: Wed, 12 May 2004 14:53:24 -0400 Sender: linux-c-programming-owner@vger.kernel.org Message-ID: <1084387986.15249.25.camel@scotus.fesnel.no-ip.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: List-Id: Content-Type: text/plain; charset="us-ascii" To: "Linux-C-Programming (E-mail)" I know I should know this, but I don't, and haven't been able to find a good answer. What does declaring a function static do? ie What is the difference between static int blue() { return 0; } and int blue() { return 0; }