In the following header file i declared some functions:
#ifndef _MY_INT_FUNCTIONS_H_
#define _MY_INT_FUNCTIONS_H_
int intFcn (const void *key, size_t table_size);
void intPrint (const void *key);
int intCompare (const void *key1, const void *key2);
#endif // _MY_INT_FUNCTIONS_H_
but i get a compilation error saying:
"expected declaration specifiers or ‘...’ before ‘size_t’"
regarding the int intFcn function.
im using eclipse INDIGO version.
help anyone?