Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a very simple Objective-C sample

#import <Foundation/Foundation.h>

int littleFunction();

int main (int argc, const char * argv[])
{

    NSAutoreleasePool * pool 
    = [[NSAutoreleasePool alloc] init];

    // insert code here...
    NSLog(@"Hello, World!");

    [pool drain];
    return 0;
}

int littleFunction()
{
    return 0;
}

With this code I get a "no previous prototype for function" warning for littleFunction but as you can all see there is a declaration before main. What is wrong here? It seem the compiler is unable to match the declaration with the function implementation.

If I change both like this:

int littleFunction(void)

it works perfectly. I am using the latest Xcode 4

share|improve this question

2 Answers

up vote 28 down vote accepted

In C, int littleFunction(); declares a function that can take any number of arguments. It's not really a prototype.

You have to explicitly specify int foo(void); if you want to prototype a function that doesn't take parameters. Objective-C has the same rules.

share|improve this answer
this helped. thanks – geekay Oct 5 '12 at 5:47

I think the problem is that you did not use "static" for a global function.

Please refer to the following:

no previous prototype for `foo'

This means that GCC found a global function definition without seeing a prototype for the function. If a function is used in more than one file, there should be a prototype for it in a header file somewhere. This keeps functions and their uses from getting out of sync

If the function is only used in this file, make it static to guarantee that it'll never be used outside this file and document that it's a local function

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.