T
Technoid
I'm working on a legacy test platform with a compiler that expects K&R
style C (as opposed to ANSI). How does this affect the required syntax
for my code? Would it affect syntax for function prototypes?
When I attempt to make or compile my C code, the compiler complains
about the syntax of the function prototypes, even though the syntax is
correct.
Example syntax:
void function_name(void);
If the issue is not with the compiler, what else could be causing the
compile error?
Thanks!
style C (as opposed to ANSI). How does this affect the required syntax
for my code? Would it affect syntax for function prototypes?
When I attempt to make or compile my C code, the compiler complains
about the syntax of the function prototypes, even though the syntax is
correct.
Example syntax:
void function_name(void);
If the issue is not with the compiler, what else could be causing the
compile error?
Thanks!